SA-MP Forums Archive
[FilterScript] Welcome Messages <First FS> - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Welcome Messages <First FS> (/showthread.php?tid=402795)



Welcome Messages <First FS> - DJTunes - 28.12.2012

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


Re: Welcome Messages <First FS> - XtremeR - 28.12.2012

Well Any screen shots? and good luck for future!


Re: Welcome Messages <First FS> - DJTunes - 28.12.2012

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


Re: Welcome Messages <First FS> - Ryox175 - 28.12.2012

I can have that message in gamemode too but... ... Niceeeeee


Re: Welcome Messages <First FS> - DJTunes - 28.12.2012

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.


Re: Welcome Messages <First FS> - [WA]iRonan - 28.12.2012

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


Re: Welcome Messages <First FS> - DJTunes - 28.12.2012

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


Re: Welcome Messages <First FS> - M3mPHi$_S3 - 09.01.2013

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

4 Lines Filtercript ... Looks pretty strange


Re: Welcome Messages <First FS> - Riddick94 - 07.05.2013

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.


Re: Welcome Messages <First FS> - daniel2499 - 07.05.2013

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;
}