[02:08:57] sscanf warning: 'z' is deprecated, consider using 'S' instead. [02:08:57] sscanf warning: No default value found. [02:08:57] sscanf warning: Format specifier does not match parameter count.
CMD:freeze(playerid,params[])
{
if(PlayerInfo[playerid][pAdminLevel] >=1)
{
new id,n[MAX_PLAYER_NAME],reason[35], on[MAX_PLAYER_NAME], string[128], string2[128];
if(sscanf(params,"uz",id, reason)) return SendClientMessage(playerid,COLOR_RED,"Usage:/freeze [ID] [reason]");
else if(playerid == INVALID_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"System: Invalid ID");
if (id == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "System: Invalid ID");
else
{
GetPlayerName(playerid,n,sizeof(n));
GetPlayerName(id,on,sizeof(on));
format(string,sizeof(string),"You have been freezed by Admin: %s for %s",n,reason);
SendClientMessage(playerid,COLOR_RED,string);//
format(string2, sizeof(string), "Admin Action: %s has freezed %s because: %s",n,on,reason);
SendClientMessageToAll(COLOR_RED,string2);
TogglePlayerControllable(playerid,0);
}
}
else return SendClientMessage(playerid,COLOR_RED," You are not allowed to use this command!");
return 1;
}
CMD:unfreeze(playerid,params[])
{
if(PlayerInfo[playerid][pAdminLevel] >=1)
{
new id,n[MAX_PLAYER_NAME],reason[35], on[MAX_PLAYER_NAME], string[128], string2[128];
if(sscanf(params,"uz",id, reason)) return SendClientMessage(playerid,COLOR_RED,"Usage:/unfreeze [ID] [reason]");
else if(playerid == INVALID_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"System: Invalid ID");
if (id == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "System: Invalid ID");
else
{
GetPlayerName(playerid,n,sizeof(n));
GetPlayerName(id,on,sizeof(on));
format(string,sizeof(string),"You have been unfreezed by Admin: %s for %s",n,reason);
SendClientMessage(playerid,COLOR_RED,string);//
format(string2, sizeof(string), "Admin Action: %s has unfreezed %s because: %s",n,on,reason);
SendClientMessageToAll(COLOR_RED,string2);
TogglePlayerControllable(playerid,1);
}
}
else return SendClientMessage(playerid,COLOR_RED," You are not allowed to use this command!");
return 1;
}
sscanf(params,"uS[35](no reason)",id, reason)
pawn Код:
|
[02:08:57] sscanf warning: 'z' is deprecated, consider using 'S' instead.
sscanf(params,"uZ[35](no reason)",id, reason)
sscanf(params,"uS[35](no reason)",id, reason)
CMD:unfreeze(playerid,params[])
{
if(PlayerInfo[playerid][pAdminLevel] >=1)
{
new id,n[MAX_PLAYER_NAME],reason[35], on[MAX_PLAYER_NAME], string[128], string2[128];
sscanf(params,"uS[35](no reason)",id, reason) return SendClientMessage(playerid,COLOR_RED,"Usage:/unfreeze [ID] [reason]");
else if(playerid == INVALID_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"System: Invalid ID");
if (id == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "System: Invalid ID");
else
{
GetPlayerName(playerid,n,sizeof(n));
GetPlayerName(id,on,sizeof(on));
format(string,sizeof(string),"You have been unfreezed by Admin: %s for %s",n,reason);
SendClientMessage(playerid,COLOR_RED,string);//
format(string2, sizeof(string), "Admin Action: %s has unfreezed %s because: %s",n,on,reason);
SendClientMessageToAll(COLOR_RED,string2);
TogglePlayerControllable(playerid,1);
}
}
else return SendClientMessage(playerid,COLOR_RED," You are not allowed to use this command!");
return 1;
}
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(224) : error 001: expected token: ";", but found "return" C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : warning 225: unreachable code C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : error 029: invalid expression, assumed zero C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : warning 215: expression has no effect C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : error 001: expected token: ";", but found "if"
sscanf(params,"uS[35](no reason)",id, reason) return SendClientMessage(playerid,COLOR_RED,"Usage:/unfreeze [ID] [reason]");
if(sscanf(params,"uS[35](no reason)",id, reason)) return SendClientMessage(playerid,COLOR_RED,"Usage:/unfreeze [ID] [reason]");
pawn Код:
pawn Код:
|