21.04.2016, 00:24
ERRO:
1 Error.
Linha do ERRO:
Codigo Completo:
Код:
C:\Users\PequeninO\Desktop\PequeninO ™\gamemodes\sandreas.pwn(1782) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Linha do ERRO:
Код:
return 0;
Код:
CMD:gc(playerid) { if(Ativado[playerid] == 1) { SendClientMessage(playerid, 0xF3FA2EAA, "|SERVER| GodCar Jб estб ativado, Para desativar USE: ( /Gcoff )"); return 1; } if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xF3FA2EAA, "|SERVER| Permitido uso desse comando, somente dentro de veiculo."); TempoAutoReparar = SetTimerEx("AutoReparar", 200, true, "i", playerid); SendClientMessage(playerid, 0xF3FA2EAA, "|SERVER| GodCar Ativado."); Ativado[playerid] =1; return 1; } CMD:gcoff(playerid) { if(Ativado[playerid] == 0) { SendClientMessage(playerid, 0xF3FA2EAA, "|SERVER| GodCar nгo estб ativado, Para Ativar USE: ( /Gc )"); return 1; } KillTimer(TempoAutoReparar); SendClientMessage(playerid, 0xF3FA2EAA, "|SERVER| GodCar Desativado, Para Ativar USE: ( /Gc )"); Ativado[playerid] = 0; return 1; } return 0; }