Posts: 6
Threads: 1
Joined: Jun 2010
Reputation:
0
I Thought id Randomly make a messages FilterScript for people enjoy.
Posts: 360
Threads: 32
Joined: Jul 2010
Reputation:
0
More detail please? Or screenshots? Messages? I don't know what you mean it could me a textdraw or a pm script... More detail
Posts: 6
Threads: 1
Joined: Jun 2010
Reputation:
0
if you want to add this in this game mode script:
#define ANNOUNCEMENT 0xFFFF00AA //Add this at the top of the script!
forward GlobalAnnouncement(); //Add this at the top of the script!
new Msg;
new Announcements[8][128] = { //Add this above main!
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here",
"[MSG]:Your Message here"};
public GlobalAnnouncement() //Add this under OnPlayerCommand Text right at the bottom!
{
switch (Msg)
{
case 0: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[0]); Msg++;}
case 1: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[1]); Msg++;}
case 2: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[2]); Msg++;}
case 3: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[3]); Msg++;}
case 4: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[4]); Msg++;}
case 5: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[5]); Msg++;}
case 6: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[6]); Msg++;}
case 7: {SendClientMessageToAll(ANNOUNCEMENT,Announcements[7]); Msg = 0;}
}
return 1;
}
Posts: 180
Threads: 20
Joined: May 2010
Reputation:
0
So all you did is basically copy off the random messages tutorial in the wiki, change a bit of stuff, then release it? Dude, there are TOO many of these filterscripts on the forum.
Posts: 6
Threads: 1
Joined: Jun 2010
Reputation:
0
No i didn't copy and past of samp wiki random messages are different to my filterscript mine doesnt say one message then the same message again after mine does each message one after another please try not to make me look dumb becuase you just failed...and for to many of them i cant find one like mine and im new scripter so im releasing easy things i do..
Posts: 6
Threads: 1
Joined: Jun 2010
Reputation:
0
yup im 100% possitive... ive been making my own stunt game mode and i added messages to it that i MADE and thought id make a fs out of it.