Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // SpiderWalk 3D Label Random Messages
- #include <a_samp>
- #define embed_glory "{ADD8E6}"
- #define embed_blue "{00A5FF}"
- new Text3D:swlabel;
- new RandomMSG[][] =
- {
- ""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" ] ",
- ""embed_blue"[ "embed_glory"[HELP]:Server version is 1.0.Maked is in 2011.And we are happy you joined! "embed_blue"]"
- };
- forward SendMSG();
- public SendMSG()
- {
- new randMSG = random(sizeof(RandomMSG));
- Update3DTextLabelText(swlabel, 0xFFFFFFFF, RandomMSG[randMSG]);
- }
- public OnGameModeInit()
- {
- SetTimer("SendMSG", 25000, true);
- 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);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment