how can i fix my /fly
#1

When i do /fly it just puts me like the air then i fall down, Its like i was slapped

CMD:fly(playerid, params[])
{
if (PlayerInfo[playerid][pAdmin] >= 2) {
new Floatx, Floaty, Floatz, Floata;
GetPlayerFacingAngle(playerid,pa);
if(pa >= 0.0 && pa <= 22.5) { //n1
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px, py+30, pz+5);
}
if(pa >= 332.5 && pa < 0.0) { //n2
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px, py+30, pz+5);
}
if(pa >= 22.5 && pa <= 67.5) { //nw
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px-15, py+15, pz+5);
}
if(pa >= 67.5 && pa <= 112.5) { //w
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px-30, py, pz+5);
}
if(pa >= 112.5 && pa <= 157.5) { //sw
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px-15, py-15, pz+5);
}
if(pa >= 157.5 && pa <= 202.5) { //s
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px, py-30, pz+5);
}
if(pa >= 202.5 && pa <= 247.5) { //se
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px+15, py-15, pz+5);
}
if(pa >= 247.5 && pa <= 292.5) { //e
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px+30, py, pz+5);
}
if(pa >= 292.5 && pa <= 332.5) { //e
GetPlayerPos(playerid, px, py, pz);
SetPlayerPos(playerid, px+15, py+15, pz+5);
}
}
else {
SendClientMessageEx(playerid, COLOR_GRAD1, " You are not an Admin!");
}
return 1;
}

Thats my current settings
Reply
#2

Use this include, it will help you!

https://sampforum.blast.hk/showthread.php?tid=309467
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)