13.02.2013, 13:14
I prefer not to use any streamers unless your gamemode is a stunt one with 2000+ objects.
Use default SA-MP pickups?
Use default SA-MP pickups?
pawn Код:
new taxi_pickup;
// OnGameModeInIt
{
taxi_pickup = CreatePickup(....);
return 1;
}
// OnPlayerPickupPickUp
if(pickupid == taxi_pickup)
{
ShowPlayerDialog(....);
}
// OnPlayerDialogResponse
if(wautseveras == atwaisds)
{
watever;
}