02.10.2014, 12:21
Added three new callbacks:
And these functions:
"OnPlayerTakePicture" is called when a player takes a picture with a camera. I was bored so I figured why not add it. It could be useful for roleplay servers too, lol.
Yeah, sorry bout that. I don't usually update "example.pwn" when I update this include.
pawn Код:
public OnPlayerBurning(playerid, status)
{
if (status)
{
// Started burning
}
else
{
// Stopped burning
}
return 1;
}
public OnPlayerAiming(playerid, weaponid, status)
{
if (status)
{
// Started aiming
}
else
{
// Stopped aiming
}
return 1;
}
public OnPlayerTakePicture(playerid);
{
return 1;
}
pawn Код:
stock IsPlayerBurning(playerid);
stock IsPlayerAiming(playerid);
Yeah, sorry bout that. I don't usually update "example.pwn" when I update this include.