[FilterScript] Random Message and Rules
#1

Here is a little Random Message. The timer is on 30000 ms, but you can edit it if you want [ofcourse]

DOWNLOAD

PASTEBIN = http://pastebin.com/YcJb71DZ

.PWN = http://www.mediafire.com/?54pbpy8fmjs655m

.AMX = http://www.mediafire.com/?grc3kc62b3ry351


Here is the Rules in a Dialog. They either have to Accept or Decline. If they Decline, they will be kicked with the 'SendClientMessage' "no? Then this server aint for you boi.''

PASTEBIN = http://pastebin.com/CensZtY0

If you want AMX and/or PWN, PM me!

C'ya till next time!

- Kudoz
Reply
#2

hey .. have screenshots ?
Reply
#3

I'' add after I come home!
btw, I'm Cir.Cuz in DGZ! hey E-Mard
Reply
#4

EDIT ON TOPIC: THIS ALSO INCLUDES RULES DIALOG!

I will add screenies later.
Reply
#5

Lol, you really are describing this as Filterscript? That's pity! Making a "rules"-command and random messages doesn't even need an irrelevant Filterscript! Look into my signature, I've made a tutorial which is WAY more simple than this unnecessary FS! And then you're expecting from anyone reputation?
Reply
#6

ohh .. nice bro .... good job !
Reply
#7

Sends a message only ID0 ....
Reply
#8

Twisted.. I'm not asking for any reputation. Only If I helped people, example when I help 'em in "Scripting Discussion".
Reply
#9

Other simple way to do this...
It's randomize the message, and you can put more lines message without create others callbacks
pawn Код:
new msgAll[3][100] = {
    {".::Hello, welcome to my Server! Have Fun!::.."},
    {"Add Us to your favourites! IP: Your.IP.Here    ."},
    {"Rules: no Hacking!HACK = BAN! behave to admins! Respect other players."}
};
public OnGameModeInit()
{
    SetTimer("Inutils", 2000, true);
    return 1;
}

forward Inutils();
public Inutils()
{
    new str[128], wiiR = random(sizeof(msgAll));
    format(str, 100, "%s", msgAll[wiiR]);
    SendClientMessageToAll(-1, str);
    return 1;
}
Reply
#10

I like that rules box.
But random messages are simple.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)