SA-MP Forums Archive
Admin please remove. - 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: Admin please remove. (/showthread.php?tid=106994)



Admin please remove. - bajskorv123 - 07.11.2009

Admin please remove this as the script and this topic got outdated.


Re: Show/Hide names filterscript - GaGlets(R) - 07.11.2009

Nice script man...
good job...

I question..

can i put it in my scripT ? Leaving credits ?


- - bajskorv123 - 09.11.2009

-


Re: Show/Hide names filterscript - Showman - 10.11.2009

Good,

For add in You gamemode, Go to public OnPlayerCommandText
and copy-past this

if(strcmp("/namesoff",cmdtext, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, false);
GameTextForPlayer(playerid,"~w~Nametags ~r~Off",2000,3);// By Bajskorv
return 1;
}

if(strcmp("/nameson", cmdtext, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, true);
GameTextForPlayer(playerid,"~w~Nametags ~g~On",2000,3);
return 1;
}


Re: Show/Hide names filterscript - •CryWolf• - 10.11.2009

Thanks for the 'Mini-FS'


- - bajskorv123 - 11.11.2009

-


- - bajskorv123 - 11.11.2009

-