Guest User

3D Random Mesages

a guest
Dec 13th, 2011
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. // SpiderWalk 3D Label Random Messages
  2.  
  3.  
  4. #include <a_samp>
  5.  
  6. #define embed_glory "{ADD8E6}"
  7. #define embed_blue "{00A5FF}"
  8.  
  9. new Text3D:swlabel;
  10.  
  11. new RandomMSG[][] =
  12. {
  13. ""embed_blue"[ "embed_glory"[HELP]:People asking in game this ,I want to be admin!,Now no.Make Application on forum and if you ask in game you are diened!"embed_blue" ] ",
  14. ""embed_blue"[ "embed_glory"[HELP]:Server version is 1.0.Maked is in 2011.And we are happy you joined! "embed_blue"]"
  15. };
  16. forward SendMSG();
  17.  
  18. public SendMSG()
  19. {
  20. new randMSG = random(sizeof(RandomMSG));
  21. Update3DTextLabelText(swlabel, 0xFFFFFFFF, RandomMSG[randMSG]);
  22. }
  23. public OnGameModeInit()
  24. {
  25. SetTimer("SendMSG", 25000, true);
  26. swlabel = Create3DTextLabel(""embed_blue"[ "embed_glory"[HELP]:If you need help ask admin on chat.Or /commands or /help it will help you too!"embed_blue" ]",0x008080FF,378.0938,1973.1765,17.6575,40.0,0);
  27. return 1;
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment