[FilterScript] Simple Textdraw message box.
#1

Hey there,
well, after my long inactive i'm back with my new simple Filter script.

How To use
pawn Code:
//------Example-------//
public OnPlayerConnect(playerid)
{
   new string[128],name[24];
   GetPlayerName(playerid,name,sizeof(name));
   format(string,sizeof(string),"%s has ~g~joined ~w~the server.",name);
   SendBoxMsg(string);
   return 1;
}
all you have to do is making format message then use SendBoxMsg.

Commands
pawn Code:
//========For Admins=======//
/clearbox > to clear box messages
//========For Players=======//
/boxchat > for chatting in the box > you can change it for admins
Pictures


Downloads
http://www.solidfiles.com/d/2ebcd54a69/
http://pastebin.com/AMbEZLJ8

Bugs
none for now, find one? report it in this topic.

Warnings
you need Zeex's Processor.
https://sampforum.blast.hk/showthread.php?tid=91354
Reply
#2

Oh nice Simple Connect message ..
I use like this

Code:
public OnPlayerConnect(playerid)
{

	new string[64], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    format(string,sizeof string,"%s has joined Stunt Planet",pName);
    SendClientMessageToAll(COLOR_LIGHTBLUE,string);
    LabelActive[playerid] = false;
    return 1;
}
Reply
#3

@majed, lol this is not only for connecting messages..
you can make it for every format message you want
Reply
#4

Its nice!
EDIT: let me tell you what mate, this could be done easily with single textdraw, but nice as your first release.
Reply
#5

hm nice i see you use Zamaroht's textdraw creator, easy ... but good job
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)