Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
OK its attached to this post.up load your mission pbo
Try that!BluePhoenix, please help a brother out. Just did reset to my "default" mission.pbo to test if the vehicles double spawn there, and they do not.
So something's wrong with what i've done, or missed something I believe. Atleast, every vehicles spawn twice, and often on top of eachother which causes a lot of explosions around the map and no vehicles lol.
Help would be very kind of you sir.
Cheers,
Kash
-- de-duplicate vehicle spawn points, clears all vehicle instances first, mark them at 99.9% chance of spawning so that we know which ones have been de-duped
CREATE temporary TABLE tmp_world_vehicle_dup1 LIKE world_vehicle;
insert tmp_world_vehicle_dup1
(id, worldspace)
select id, worldspace
from world_vehicle yt
where exists
(
select *
from world_vehicle yt2
where yt2.worldspace = yt.worldspace
and yt2.id > yt.id
);
-- remove vehicles spawned from the spawn point that is about to be removed
delete
from instance_vehicle
where world_vehicle_id in (select id from tmp_world_vehicle_dup1);
-- remove the duplicate spawn points
delete
from world_vehicle
where ID in (select id from tmp_world_vehicle_dup1);
update world_vehicle set chance = 0.999 where chance <> .999;
give this a tryHey BluePhoenix175, im sitting here with a gun in my mouth (figuratively, don't worry), i have been struggling to make it work all day. Could you please help me install it? I really love your script, what it is supposed to do, but when i log in, i spawn in debug land without any gear or anything. I would really LOVE your help. I uploaded my mission.pbo for you, if you wanna help, and my UniqueID is 6238406.
Thanks in advance!
-Nikolai.
found your problem.OK its attached to this post.
if ((getPlayerUID player) in ["Merg","Merg"]) then {
you spawned a s a bird correct?BluePhoenix have you found out what is wrong with my file?Here is the file after i fixed it as you said
looking into it i will keep you updatedHey BluePhoenix, it helped a bit with the mission file you sent me, but i still spawn in debug zone after a restart. The menus work in the debug zone though, but after i log out of the server and log in again, i spawn like i should, but then the menu doesn't work. Do you know what seems to be the problem? Is there a clientside file i need to edit?
Thanks![]()
Correct and in the debug zone
what map are y'all installing this on?Hey BluePhoenix, it helped a bit with the mission file you sent me, but i still spawn in debug zone after a restart. The menus work in the debug zone though, but after i log out of the server and log in again, i spawn like i should, but then the menu doesn't work. Do you know what seems to be the problem? Is there a clientside file i need to edit?
Thanks![]()
I entered my ID but still cant see a option while scrolling.found your problem.please review the install instructions in the readmeCode:if ((getPlayerUID player) in ["Merg","Merg"]) then {
Please review the install instructions inside README lines 31 to 36I entered my ID but still cant see a option while scrolling.