[ Help ] how to create fracture
#1

way to create a text does not for the player run, only the go
my needs to its gamemode Dayz of me

= sorry .. ****** tran english
Reply
#2

Quote:
Originally Posted by Borntobie
Посмотреть сообщение
way to create a text does not for the player run, only the go
my needs to its gamemode Dayz of me

= sorry .. ****** tran english
I couldn't have understand anything could you please get some other translator? A friend maybe.
Reply
#3

I need a way to make the player can not run fast
Reply
#4

Quote:
Originally Posted by Borntobie
Посмотреть сообщение
I need a way to make the player can not run fast
You want that the player will run slowly ? :S
Reply
#5

To make the player run faster add UsePlayerPedAnims(); in ongamemodeinit
Reply
#6

no....
make the player can not run fast [ space bar ]
Reply
#7

Not sure it will work.
pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
    {
        if (((newkeys & (KEY_SPRINT)) == (KEY_SPRINT)) && ((oldkeys & (KEY_SPRINT)) != (KEY_SPRINT)))
        {
            return 0;
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)