Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3.  
  4. public client_putinserver(id) {
  5. new SteamID[32],
  6. SteamIDLen = charsmax(SteamID)
  7. get_user_authid(id, SteamID, SteamIDLen)
  8.  
  9. if(containi(SteamID, "STEAM_0:1:") != -1) {
  10. set_user_flags(read_flags("t"))
  11. set_task(10.0, "TASK_Message", id)
  12. }
  13. }
  14.  
  15. public TASK_Message(id) {
  16. if(is_user_connected(id))
  17. client_print(id, print_chat, "Felicitari, ai STEAM ON, ai primit VIP!")
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement