Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] DayZ Server Pack - 0.46 (Experimental Compatible)

Status
Not open for further replies.
Newbie Spellweaver
Joined
May 17, 2014
Messages
53
Reaction score
2
hello is that animals spawn with this version? i do not see on my server sorry for my english

DZ_MAX_ANIMALS = 300; // 300 seems hardcoded can be changed but will impact sever performance , same as to much zombies
call init_spawnWildAnimals;
 
Initiate Mage
Joined
Jul 3, 2014
Messages
4
Reaction score
0
DZ_MAX_ANIMALS = 300; // 300 seems hardcoded can be changed but will impact sever performance , same as to much zombies
call init_spawnWildAnimals;

thank you but when I put the line in the init.sqf I still don't see animals this is my init.sqf

setTimeForScripts 90;

call compile preprocessFileLineNumbers "\dz\modulesDayZ\init.sqf";

DZ_MP_CONNECT = true;
DZ_MAX_ZOMBIES = 700;
DZ_MAX_ANIMALS = 300

call dbLoadPlayer;

_humidity = random 1;
//setDate getSystemTime;
setDate [2013, 12, 16, 15, 0];
0 setOvercast _humidity;
simulWeatherSync;
//setAccTime 60;
//skipTime 20.5;

_position = [7500, 7500, 0];
//exportProxies [_position, 200000];
call init_spawnZombies;
call init_spawnWildAnimals;
sleep 1;
importProxies;
spawnLoot [_position, 30000, 35000];

dbInitServer;

setTimeForScripts 0.03;


dbSelectHost "http://localhost/DayZServlet/";


EDIT: i see my error and it works now thanks for the help :)
 
Last edited:
Skilled Illusionist
Joined
Jun 19, 2014
Messages
315
Reaction score
71
1-open block note and wrait thes
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting]
"DontShowUI"=dword:00000001
save it en any name example server.reg extonsion reg and open and accept

2- open block not and past thes

@echo off
title DayZ Server Restarter
color 0a
:top
echo Server has been started at %time% !
start /wait server.exe -server -port=2302 -config=server.cfg -cfg=basic.cfg -profiles=DayZ_Auto.ChernarusPlus -name=server
echo Server has crashed at %time%, restarting!
color 0c
goto top
name it serverrestart.bat so change the port for your server and the name of your server

3-and now autorestart server open block not and past thes
@echo off
title DayZ Server AutoRestarter
color 0a
:top

echo Autorestarter has been started at %time% !

timeout /t 14400
taskkill /f /im server.exe
echo Server was restarted at %time%!
goto top




and Specify the name of your "server.exe" and where is 1440 is the reset time in segunds you can change it
4-
Save As> give a name, Server AutoRestarter.bat
Execute after starting the server with Restart Launcher
Must be left open in the 2nd level.
 
Skilled Illusionist
Joined
Jun 19, 2014
Messages
315
Reaction score
71
adam47 can not import it into the registry is not a binary registry file


past thes in blocknot and save as reg


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting]
"DontShowUI"=dword:00000001
 
Initiate Mage
Joined
Aug 9, 2014
Messages
1
Reaction score
0
sir you know how can i update may V.28 to V.46? thanks in advance. :)
 
Status
Not open for further replies.
Back
Top