OnEnterExitModShop
From SA-MP Wiki
OnEnterExitModShop
Warning: This callback was added in SA-MP version 0.3. It is not available in previous versions.
This callback is called when a player enters or exits a mod shop.
(playerid,enterexit,interiorid)
| playerid | The ID of the player that entered or exited the modshop |
| enterexit | 1 if the player entered or 0 if they exited |
| interiorid | The interior ID of the modshop that the player is entering (or 0 if exiting) |
This callback does not handle returns.
public OnEnterExitModShop(playerid, enterexit, interiorid) { if(enterexit == 0) // If enterexit is 0, this means they are exiting { SendClientMessage(playerid, COLOR_WHITE, "Nice car! You have been taxed $100."); GivePlayerMoney(playerid, -100); } return 1; }
