Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: rww on Dec 30, 2015, 12:36 AM

Title: local player pos -> create pickup with local -> player pos changed
Post by: rww on Dec 30, 2015, 12:36 AM
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
Title: Re: local player pos -> create pickup with local -> player pos changed
Post by: MatheuS on Dec 30, 2015, 12:55 AM
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
Title: Re: local player pos -> create pickup with local -> player pos changed
Post by: Xmair on Dec 30, 2015, 03:06 AM
That "=" messed this up.
Try @MartheuS code.
Title: Re: local player pos -> create pickup with local -> player pos changed
Post by: KAKAN on Dec 30, 2015, 05:58 AM
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.
Title: Re: local player pos -> create pickup with local -> player pos changed
Post by: rww on Dec 30, 2015, 12:19 PM
hahaha, fixed, thanks.