DayZ
Not enough ratings
BiathlonArena
   
Award
Favorite
Favorited
Unfavorite
Type: Mod
Mod Type: Environment, Terrain
File Size
Posted
302.373 KB
3 Jan, 2020 @ 3:28am
1 Change Note ( view )

Subscribe to download
BiathlonArena

Description
Biathlon Arena (place)

You can use it as a Mod or use the init.c method.

Init.c method, look at the info folder.


**********************************************************
It is necessary to have the @BuilderItems mod
**********************************************************


Other places:

Krasnostav airstrip
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1718540566

Bridge Prison
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1718214730

Bridge Skalisty
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1750549490

Apocalyptic_Bunker_666
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1974501795

The Labyrinth
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2002427336
17 Comments
_Papaj_Chuligan_ 17 Aug, 2022 @ 9:51am 
does anyone have mapgrouppos?
Nitrix_Spain  [author] 10 Aug, 2020 @ 7:08am 
@▽ Landum △
Yes, I already commented for a long time that that area would be edited by dev dayz
L△ndum 10 Aug, 2020 @ 2:45am 
It looks like now your mod is placing buildings inside others since 1.08, seems that devs added buildings there
Nitrix_Spain  [author] 19 Jun, 2020 @ 12:22pm 
@Salty Soldier Vet

It is a place that the Dayz team did not finish editing, in 1.8 it will be edited.
Bat' Leth 12 Jun, 2020 @ 8:24am 
Like this ?
#include "$CurrentDir:\\mpmissions\\YourNameMission.chernarusplus\\BiathlonArena.c"

//Spawn helper function
void SpawnObject(string objectName, vector position, vector orientation)
{
Object obj;
obj = Object.Cast(GetGame().CreateObject(objectName, "0 0 0"));
obj.SetPosition(position);
obj.SetOrientation(orientation);

// Force update collisions
if (obj.CanAffectPathgraph())
{
obj.SetAffectPathgraph(true, false);
GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetGame().UpdatePathgraphRegionByObject, 100, false, obj);
}
BiathlonArena();
}
void main()
{
//INIT WEATHER BEFORE ECONOMY INIT------------------------
Bat' Leth 12 Jun, 2020 @ 7:43am 
Hi Nitrix_Spain [créateur]
Thanks a lot now I understand ! :steamhappy:
Nitrix_Spain  [author] 12 Jun, 2020 @ 6:55am 
@Bat' Leth

This line has to go to the beginning of your init.c
All lines containing $ CurrentDir must be at the beginning of the ini.c
I think that in the next update BiathlonArena will be already edited on the map by the DayZ team

https://pastebin.com/BPDN64u1
Bat' Leth 12 Jun, 2020 @ 5:27am 
hi Nitrix thanks for all of your mods
I've already install apocalyptic chernarus but I have a problem with 1 instruction:
"2. include the following line above your init.c

#include "$CurrentDir:\\mpmissions\\YourNameMission.chernarusplus\\BiathlonArena.c"
Sorry but I don't understand where i must include this line ... I must rename the directory ?
Can you help me please ?
Thanks
Nitrix_Spain  [author] 6 Jun, 2020 @ 1:22pm 
@Sociopathic

Look at the file in the step-by-step instructions
BeardedHeathen 6 Jun, 2020 @ 8:08am 
Ok how do you use in in the init.c? Everytime I add it as that my server won't start and I end up with a "Can't find void" error.