27.09.2009, 17:18
I dont know for your first set of errors and warnings but on line 10399
if(Shocked[giveplayerid] == 1) {
format(string, sizeof(string), "%s(%d) Is being shocked right now. You cannot shock a player while the player is being shocked",pname,giveplayerid);
SendClientMessage(playerid, COLOR_ERROR, string);
}
should be i think
if(Shocked[giveplayerid] == 1) {
format(string, sizeof(string), "%s(%d) Is being shocked right now. You cannot shock a player while the player is being shocked",pname,giveplayerid);
SendClientMessage(playerid, COLOR_ERROR, string);
return 1;
}
if(Shocked[giveplayerid] == 1) {
format(string, sizeof(string), "%s(%d) Is being shocked right now. You cannot shock a player while the player is being shocked",pname,giveplayerid);
SendClientMessage(playerid, COLOR_ERROR, string);
}
should be i think
if(Shocked[giveplayerid] == 1) {
format(string, sizeof(string), "%s(%d) Is being shocked right now. You cannot shock a player while the player is being shocked",pname,giveplayerid);
SendClientMessage(playerid, COLOR_ERROR, string);
return 1;
}