26.07.2012, 19:31
'{' Count: 100
'}' Count: 98
1. You have to place ResetMissiles before OnGameModeInit
2.
Any other errors?
'}' Count: 98
1. You have to place ResetMissiles before OnGameModeInit
2.
pawn Код:
if(pickupid == pickup2)
{
if (gTeam[playerid] == TEAM_BLUE)
{
for(new i = 0; i < sizeof(totalobj); i ++)
{
DestroyObject(totalobj[i]);
}
//Change to
if(pickupid == pickup2 && gTeam[playerid] == TEAM_BLUE)
{
for(new i = 0; i < sizeof(totalobj); i++) DestroyObject(totalobj[i]);
}