27.12.2018, 17:00
(
Последний раз редактировалось ball; 28.12.2018 в 08:32.
)
Does anybody has problems with pickups created in specified worlds? Take this code as example
Labels are good, shown in both worlds, but pickups only in one. I test it on newest version (2.9.4). I have search common problem and found this topic -> https://sampforum.blast.hk/showthread.php?tid=575220 but no solution to this. Does anybody knows what might be wrong?
//EDIT
ziggi was faster -> https://github.com/samp-incognito/sa...gin/issues/316
Код:
CMD:test(p) { new Float:lX, Float:lY, Float:lZ; GetPlayerPos(p, lX, lY, lZ); CreateDynamicPickupEx(1240, 1, lX, lY, lZ, _, {30, 32}); CreateDynamicPickupEx(1242, 1, lX, lY, lZ, _, {32, 30}); CreateDynamic3DTextLabelEx("test", -1, lX, lY, lZ, 30.0, .worlds = {30, 32}); } CMD:w1(p) SetPlayerVirtualWorld(p, 30); CMD:w2(p) SetPlayerVirtualWorld(p, 32);
//EDIT
ziggi was faster -> https://github.com/samp-incognito/sa...gin/issues/316