public OnPlayerSpawn(playerid) { if (IsPlayerNPC(playerid)) { new slot = -1; for (new i = 0; i < MAX_RNPC_POLICE; i++) { if (ZNPC[i][ZNPC_NPCID] == playerid) { slot = i; break; } } if (slot > -1) { SetPlayerSkin(playerid, ZNPC[slot][ZNPC_SKIN]); } } CallLocalFunction("RNPC_OnPlayerSpawn", "i", playerid); }//216
new ZNPC[MAX_RNPC_POLICE][ZNPC_enum] = {{-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1}, {-1, -1, 0.0, 0.0, 0.0, 0, 0, -1} };//19
C:\Users\Korisnik\Desktop\Kruno programi\Zombie RP\filterscripts\Zombienpcs.pwn(29) : error 052: multi-dimensional arrays must be fully initialized C:\Users\Korisnik\Desktop\Kruno programi\Zombie RP\filterscripts\Zombienpcs.pwn(216) : warning 209: function "RNPC_OnPlayerSpawn" should return a value
public OnPlayerSpawn(playerid)
{
if (IsPlayerNPC(playerid)) {
new slot = -1;
for (new i = 0; i < MAX_RNPC_POLICE; i++) {
if (ZNPC[i][ZNPC_NPCID] == playerid) {
slot = i;
break;
}
}
if (slot > -1) {
SetPlayerSkin(playerid, ZNPC[slot][ZNPC_SKIN]);
}
}
CallLocalFunction("RNPC_OnPlayerSpawn", "i", playerid);
return 1;
}