15.05.2011, 07:38
I think it's a bug, i don't have it on any of my scripts, but when you die, you loose $100 i didn't want to report it on bugs sections, but i think it's a bug...
None of my includes, none of my filterscripts...
And it's a bit annoying because i have a money anti cheat so yeah
EDIT:It's onplayerspawn not onplayerdeath, but still i don't have anything that says to give monye -100...
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInMission[playerid] == 1)
{
CancelPlayersCurrentMission(playerid);
}
if(PInfo[playerid][onduty] == 1)
{
SendFMessageToAll(green,"Driver %s(ID:%i) is now off duty!",GetPName(playerid),playerid);
PInfo[playerid][onduty] = 0;
PInfo[playerid][fare2] = 0;
}
KillTimer(Fare[playerid]);
PInfo[playerid][calledtaxi] = 0;
SetPlayerVirtualWorld(playerid,0);
inplane[playerid] = 0;
Delete3DTextLabel(Shamal[playerid]);
if(GPSon[playerid] == 1)
{
SetPlayerGPS(playerid,0);
}
return 1;
}
And it's a bit annoying because i have a money anti cheat so yeah
EDIT:It's onplayerspawn not onplayerdeath, but still i don't have anything that says to give monye -100...