Advertisement
Lelouch17

toinks

Jan 18th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Re-edited typo error :P
  2. - script toinks -1{
  3. OnPcLoginEvent:
  4. if(getgmlevel() >= 99) {
  5. announce "Administrator "+strcharinfo(0)+" has signed in.",bc_all,0x00ff66;
  6. end;
  7. }
  8. if(getgmlevel() >= 20) {
  9. announce "GM "+strcharinfo(0)+" has signed in.",bc_all,0x00FF66;
  10. end;
  11. }
  12.  
  13. OnPCLogoutEvent:
  14. if(getgmlevel() >= 99) {
  15. announce "Administrator "+strcharinfo(0)+" has signed out.",bc_all,0x00ff66;
  16. end;
  17. }
  18. if(getgmlevel() >= 20) {
  19. announce "GM "+strcharinfo(0)+" has signed out.",bc_all,0x00FF66;
  20. end;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement