25.09.2015, 23:57
(
Последний раз редактировалось Rageparadise; 26.09.2015 в 10:24.
)
Another bug that I found is that if you use GivePlayerWeapon inside onplayerspawn and if you spawn too quick you'll get kicked for weapon hack.
So what I do is.. I wait like, 10 to 20 seconds in the player selection skin thingy and then I press spawn button and I don't get kicked, it's quite a weird bug.
EDT: Why when I do this:
as soon as I try to carjack someone it kicks me for teleport hack (onfoot)
Why can't I use setplayerpos?
So what I do is.. I wait like, 10 to 20 seconds in the player selection skin thingy and then I press spawn button and I don't get kicked, it's quite a weird bug.
EDT: Why when I do this:
Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) { printf("%d", vehicleid); printf("%d", Veh[playerid]); if(vehicleid != Veh[playerid] && ispassenger == 0) { new Float:x, Float:y, Float:z; PlayerPlaySound(playerid,1190,0.0,0.0,0.0); GetPlayerPos(playerid,x,y,z); SetPlayerPos(playerid,x,y,z+4); } return 1; }
Why can't I use setplayerpos?