Why my pos was changed after create pickup with local player pos?
else if (c == "test")
{
local pos = p.Pos;
CreatePickup(335,1,0,Vector(pos.x += 1.5,pos.y += 1.5,pos.z),255,true);
}
Any way to fix it? VC-MP bug?
https://youtu.be/JdU228vNwWM
else if (c == "test")
{
local pos = p.Pos;
CreatePickup(335,1,0,Vector(pos.x+1.5,pos.y+1.5,pos.z),255,true);
}
try it :D
That "=" messed this up.
Try @MartheuS code.
Well, see this command.
else if( c == "hi"){
local pos = player.Pos;
pos.x+= 5;
}
It'll increase your x coord by 5, your command does the same.
Try MatheuS's code.
hahaha, fixed, thanks.