Changing the way you enter into a door using a button or automattly?
#2

pawn Код:
#define PRESSED(%0) \
    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
   
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (PRESSED( KEY_FIRE )) // If pressed KEY_FIRE (LMB)
    {
        if(IsPlayerInRangeOfPoint(playerid, RANGE, X,Y,Z)) // Range = Distance when he can press KEY_FIRE, X,Y,Z : Checkpoint/Pick-up/Door position !
        SetPlayerInterior(playerid, 15); // Will set his interior 15, example !
    }
    return 1;
}
https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange

https://sampwiki.blast.hk/wiki/Keys
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)