20.01.2010, 18:06
I have several commands on dcmd,
But ingame it just says Unknown Command?
But ingame it just says Unknown Command?
dcmd_heal(playerid,params[])
{
SetPlayerHealth(playerid,100.0);
return 1;
}
|
Returns: Returning 0 in this callback will pass the command to another script or display 'SERVER: Unknown command' if there are no scripts to pass it on to |
|
Its nothing to do with any returns |
|
Originally Posted by boelie
Quote:
|
dcmd_kill(playerid, params[])
{
#pragma unused params
SetPlayerHealth(playerid, 0);
return 1;
}