15.11.2014, 17:17
Quote:
men lo pongo ha si ?
Код:
return GameTextForPlayer(playerid, "~r~ERROR:~w~ Ese comando no existe usa ~g~ /comandos", 3000 , 3); PlayerPlaySound ( playerid, 1095, 0.0 , 0.0 , 0.0) ; |
pawn Код:
GameTextForPlayer(playerid, "~r~ERROR:~w~ Ese comando no existe usa ~g~ /comandos", 3000 , 3);
PlayerPlaySound ( playerid, 1095, 0.0 , 0.0 , 0.0) ;
return true;
Si usas
return GameTextForPlayer(playerid, "~r~ERROR:~w~ Ese comando no existe usa ~g~ /comandos", 3000 , 3);
PlayerPlaySound ( playerid, 1095, 0.0 , 0.0 , 0.0) ;
Lo que estбs haciendo es terminar la comprobaciуn/ejecuciуn de las funciones que estйn abajo, en йste caso terminarнa en GameTextForPlayer y nunca podrб comprobar/ejecutar el PlayerPlaySound,
Resumen usa:
pawn Код:
GameTextForPlayer(playerid, "~r~ERROR:~w~ Ese comando no existe usa ~g~ /comandos", 3000 , 3);
PlayerPlaySound ( playerid, 1095, 0.0 , 0.0 , 0.0) ;
return true;