Need help
#1

I made a berger shot through mta :P
and i want to enter that shop.
how to do that? Is it possible?
Reply
#2

all you need is the object and a "/enter" command
Reply
#3

so i should make a command like that?
Reply
#4

yeah, Basicly its just a teleport command that sets player's position in an interior
Reply
#5

Make a pickup:

pawn Код:
new pickup;

public OnGameModeInit()
{
    pickup = CreatePickup(...);
    return 1;
}
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
    if(pickupid == pickup)
    {
        SetPlayerPos(playerid, x, y, z);
        //...
    }
    return 1;
}
Or use IsPlayerInRangeOfPoint in a command
Reply
#6

ok thank you
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)