ADMIN TAG PROBLEM - 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: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: ADMIN TAG PROBLEM (
/showthread.php?tid=457903)
ADMIN TAG PROBLEM -
Baumann - 13.08.2013
slovd
Re: ADMIN TAG PROBLEM -
Areax - 13.08.2013
NVM...
Re: ADMIN TAG PROBLEM -
Baumann - 13.08.2013
no i added on playerspawn
Re: ADMIN TAG PROBLEM -
Onfroi - 13.08.2013
Move it to OnPlayerConnect, that should solve the problem.
Regards
Re: ADMIN TAG PROBLEM -
Baumann - 13.08.2013
Still same problem , i added it to on teh top OnPlayerConnect
Re: ADMIN TAG PROBLEM -
Baumann - 14.08.2013
slovd
Re : ADMIN TAG PROBLEM -
Matnix - 14.08.2013
For me this way is better, I prefer this one and it's an example (
untested for the moment) hope you like this way.
pawn Код:
// On Player Text
new string[256], Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof (Name));
IsPlayerAdmin(playerid);
{
format(string,sizeof(string), "[ADMIN] %s said : %s", Name, text);
SendClientMessageToAll(-1, string);
return 0;
}
// etc your others code
Re: ADMIN TAG PROBLEM -
Baumann - 14.08.2013
Matnix , thanx it worked !