20.09.2010, 04:38
Quote:
podes hacer algo asi:
pawn Код:
|
C:\Users\Roberto\samp\Destruccion total\gamemodes\lvdm.pwn(210) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
pero no podria agregarle algo al comando de teletrasportarcion que ta tengo para que funcione con el auto le que tengo es asi
if(strcmp(cmd, "/drift", true) == 0)
{
new Float:health;
GetPlayerHealth(playerid,health);
if(health >= 80)
{
SetPlayerPos(playerid, -302.55, 1512.47, 75.360);
SendClientMessage(playerid, COLOR_GREEN, "Has sido transportado a Drift" );
}
else
{
SendClientMessage(playerid, 0xAA3333AA, "Para usar el teleport llena tu vida antes"); // este es el texto que aparecera
}
return 1;
}