02.06.2017, 04:14
Me Salio Esto
y Lo Tengo De Esta Manera
Quote:
C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(97 ![]() C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(979) : error 017: undefined symbol "RandomSpawns" C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(979) : warning 215: expression has no effect C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(979) : error 001: expected token: ";", but found "]" C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(979) : error 029: invalid expression, assumed zero C:\Users\User Principal 2\Documents\DeTodoUnPoco\gamemodes\DeTodoUnPocoVIP .pwn(979) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 5 Errors. |
Quote:
public OnPlayerSpawn(playerid) { //=====================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); GameTextForPlayer(playerid,"~y~Proteccion ~r~5~y~sg",6000,5); Inorar Pero Si Puedes Ayudarme Como Creo Protecion Por 5 Segundos al Jugador Que Spawnea //================================================== =================================== new rand = random(sizeof RandomSpawns); SetPlayerPos(playerid, RandomSpawns[rand][0], RandomSpawns[rand][1], RandomSpawns[rand][2]); return 1; } |