OnPlayerText VIP tag error - 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: OnPlayerText VIP tag error (
/showthread.php?tid=397196)
OnPlayerText VIP tag error -
Threshold - 03.12.2012
Guys,
Im having a problem with the OnPlayerText. Im trying to add, If player is VIP. So he gets this tag and etc. But im getting this error. Im blanking a bit. If somebody can kindly help me please.
pawn Код:
public OnPlayerText(playerid,text[])
{
if(PlayerInfo[playerid][pVIPLevel] < 1) {
new string[128], playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
format(string, sizeof(string), "[VIP]%s[%d]: [V.I.P] - ( %s )",playername, playerid, text);
SendClientMessageToAll(-1, string);
return 0;
}
else
{
if(muted[playerid] == 1)
{
SendClientMessage(playerid,-1,"ERROR:Your muted.");
return 0;
}
return 1;
}
Re: OnPlayerText VIP tag error -
tyler12 - 03.12.2012
PHP код:
public OnPlayerText(playerid,text[])
{
if(PlayerInfo[playerid][pVIPLevel] > 0)
{
new string[128], playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
format(string, sizeof(string), "[VIP]%s[%d]: [V.I.P] - ( %s )",playername, playerid, text);
SendClientMessageToAll(-1, string);
return 0;
}
if(muted[playerid] == 1)
{
SendClientMessage(playerid,-1,"ERROR:Your muted.");
return 0;
}
return 1;
}
Re: OnPlayerText VIP tag error -
park4bmx - 03.12.2012
You missed a bracket to close the if statmen but just do this
pawn Код:
public OnPlayerText(playerid,text[])
{
if(PlayerInfo[playerid][pVIPLevel] < 1) {
new string[128], playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
format(string, sizeof(string), "[VIP]%s[%d]: [V.I.P] - ( %s )",playername, playerid, text);
SendClientMessageToAll(-1, string);
return 0;
}else if(muted[playerid] == 1){
SendClientMessage(playerid,-1,"ERROR:Your muted.");
return 0;
}
return 1;
}
Re: OnPlayerText VIP tag error -
Threshold - 03.12.2012
Thanks bro! +REP