Admin-fly error.
#1

On /adminfly it enables the admin to fly around without using ****** etc.
So, what the problem is, that only the space and crouch work, none other. What is causing this and how to fix it?

PHP код:
    if(Flying[playerid] == 1)
    {
        if(
HOLDING(KEY_LOOK_LEFT))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0]+2oldpos[1], oldpos[2]);
        }
        else if(
HOLDING(KEY_LOOK_RIGHT))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0]-2oldpos[1], oldpos[2]);
        }
        else if(
HOLDING(KEY_LEFT))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0], oldpos[1]+2oldpos[2]);
        }
        else if(
HOLDING(KEY_RIGHT))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0], oldpos[1]-2oldpos[2]);
        }
        else if(
HOLDING(KEY_SPRINT))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]+2);
        }
        else if(
HOLDING(KEY_CROUCH))
        {
            new 
Float:oldpos[3];
            
GetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]);
            
SetPlayerPos(playeridoldpos[0], oldpos[1], oldpos[2]-2);
        } 
(Yes, i know I could've put the oldpos definition on top)
Reply


Messages In This Thread
Admin-fly error. - by Kaaajmak - 13.01.2013, 18:28
Re: Admin-fly error. - by PRoleplay - 13.01.2013, 18:34
Re: Admin-fly error. - by Kaaajmak - 13.01.2013, 18:39
Re: Admin-fly error. - by mineralo - 13.01.2013, 18:46
Re: Admin-fly error. - by Kaaajmak - 13.01.2013, 18:49
Re: Admin-fly error. - by mineralo - 13.01.2013, 18:59
Re: Admin-fly error. - by mineralo - 13.01.2013, 19:03
Re: Admin-fly error. - by Kaaajmak - 13.01.2013, 19:15

Forum Jump:


Users browsing this thread: 4 Guest(s)