17.07.2016, 14:41
Hi'
I'm here to ask you, how to implent a function ? I've the error 004
I know what this mean, I've just to write
But this is not the purpose here. I'm looking for implementing a function without creating it like showed before.
Code:
Thanks for helping.
NB: This is only optimization.
I'm here to ask you, how to implent a function ? I've the error 004
Код:
error 004: function "OnPlayerKilledPlayer" is not implemented
PHP код:
OnPlayerKilledPlayer(playerid, deathid)
{
// Codee..
return 1;
}
Code:
PHP код:
#include <a_samp>
public OnPlayerDeath(playerid, killerid, reason)
{
#if defined OnPlayerKilledPlayer
if(killerid != INVALID_PLAYER_ID) OnPlayerKilledPlayer(playerid, reason);
#endif
return 1;
}
forward OnPlayerKilledPlayer(playerid, deathid);
NB: This is only optimization.