I cant use wait so what do i use?
I was told set_task would do the job, but i dont know how to use that ...
Ideally this should work out so it show red(for 1 sec), white(for 1 sec), and blue(for 1 sec) then the hole thing disapears.
(Yes i do know this will be on top of each other.)
Code:
public client_connect(id) {
new dyAuthID[32], dyUserIP[32], dyUserName[32]
get_user_authid(id, dyAuthID, 31)
get_user_ip(id, dyUserIP, 31, 1)
get_user_name(id, dyUserName, 31)
if(get_user_flags(id)&ADMIN_ADMIN){
server_cmd("tsay 255000000 [ADMIN]%s has joined the server;wait;wait;wait;wait", dyUserName)
server_cmd("tsay 255255255 [ADMIN]%s has joined the server;wait;wait;wait;wait", dyUserName)
server_cmd("tsay 000000255 [ADMIN]%s has joined the server;wait;wait;wait;wait", dyUserName)
}else{
server_cmd("tsay 255255000 %s has joined the server", dyUserName)
}
}
__________________