14.07.2010, 17:12
Is there a way to detect if a player has been to a mod shop? I am trying to make an anti cheat. I have a lot of things done, just wondering if this is possible.
public OnPlayerInteriorChange(playerid,newinteriorid,oldinteriorid)
{
if(oldinteriorid)
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
// player was in a mod shop
}
}
return 1;
}
why u want if player was in mod shop? players can enter them without cheats or u blocked them off with a object or something?
|