30.06.2017, 16:30
Xd A Hora Me Salen MAs Errores Que El Anterior
Quote:
C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(52) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(52) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(52) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(52) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(53) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(53) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(53) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(53) : warning 213: tag mismatch C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(967) : error 029: invalid expression, assumed zero C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(967) : warning 215: expression has no effect C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(967) : error 001: expected token: ";", but found "]" C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(967) : error 029: invalid expression, assumed zero C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(967) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors. |
Quote:
public OnPlayerSpawn(playerid) { new spawn = random(sizeof(PlayerRandomSpawn)); SetPlayerPos(playerid,PlayerRandomSpawn[spawn][0],[spawn][1],PlayerRandomSpawn[spawn][2]); SetPlayerFacinAngle(playerid,PlayerRandomSpawn[spawn][3]); //=====================Armas Dada Al Spawnear A El Jugador============================= SetPlayerHealth(playerid, 100); SetPlayerArmour(playerid, 100); GivePlayerWeapon(playerid, 24,1000); GivePlayerWeapon(playerid, 31,1000); GivePlayerWeapon(playerid, 26,1000); GivePlayerWeapon(playerid, 32,1000); GivePlayerWeapon(playerid, 28,1000); GivePlayerWeapon(playerid, 34,1000); //================================================== =================================== SetPlayerHealth(playerid, 99999.0); SetPlayerArmour(playerid, 99999.0); SetTimerEx("SpawnProtection", 5000, false, "i", playerid); SendClientMessage(playerid, COLOR_ROJO, "*Anti-Spawn kill protegido por 5 segundos!"); } |