[FilterScript] Welcome Messages <First FS>
#1

BE AWARE
Please be aware that I do not have much knowledge in filterscripts, though I'm an okay scripter when it comes to Game-Modes. This is indeed my first filterscript so don't go to hard on me.

Introduction
This filterscript creates really, really, really basic, and simple leave, and join messages, and then says it on the server.

Why would this be needed?
If you didn't have welcome, and leave messages players would not feel welcomed. Using my filterscript also allows players to see who has just left, and who has just connected to the server.



Downloads
-------------------------------------
Version 1.0 - Credits: DJTunes
Download: http://www.mediafire.com/download.php?vl9j8x83k474v5b
Pastebin: http://pastebin.com/QbDR7pUg

Version 1.1 - Credits: DJTunes, BlackHorse
Pastebin: http://pastebin.com/acW2NHe6
Reply
#2

Well Any screen shots? and good luck for future!
Reply
#3

Totally forgot screenshots! I'll edit it soon, and Thanks!
Reply
#4

I can have that message in gamemode too but... ... Niceeeeee
Reply
#5

Yes, I know it's really basic.
You could just save your time just adding the code into your script, but I just wanted to show off my first filterscript. Thanks by the way.
Reply
#6

What people say like: Not needed i bullcrap. Most gamemodes DOESNT have this. OR have a worse one. This one is easy and great
Reply
#7

Quote:
Originally Posted by [WA]iRonan
Посмотреть сообщение
What people say like: Not needed i bullcrap. Most gamemodes DOESNT have this. OR have a worse one. This one is easy and great
You've made my day
Reply
#8

PHP код:
public OnPlayerConnect (playerid)
{
    
SendClientMessage (playeridCOLOR_WHITE"%s joined the server.Welcome);
    return 1;

4 Lines Filtercript ... Looks pretty strange
Reply
#9

Quote:
Originally Posted by M3mPHi$_S3
Посмотреть сообщение
PHP код:
public OnPlayerConnect (playerid)
{
    
SendClientMessage (playeridCOLOR_WHITE"%s joined the server.Welcome);
    return 1;

4 Lines Filtercript ... Looks pretty strange
You know, that is not gonna work, right? I mean '%s' operator.
Reply
#10

Quote:
Originally Posted by Riddick94
Посмотреть сообщение
You know, that is not gonna work, right? I mean '%s' operator.
So Easy ..

pawn Код:
public OnPlayerConnect (playerid) {
new string[128];
format(string,sizeof(string),"%s Has Joined To The Server !",GetName(playerid));
SendClientMessageToAll(0xFFFFFAA,string);
return 1;
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)