Jump to content
Sign in to follow this  
Aralvar

Script inidb\init.sqf not found

Recommended Posts

I get this error whenever my server tries to use inidb. I have everything set up correctly to my knowledge, with the right line in my mission init file and the "-mod=@inidb;" thing in my server command line. I even have it installed client side and it still doesn't work. Could this be because there is no init.sqf outside of the examples folder? I've had so many problems with my server lately and I don't understand why.

Share this post


Link to post
Share on other sites

Are you using Client Side or Server Side iniDB? (Same thing, Different place)

For Server, in init.sqf:

if(isServer) then {

call compile preprocessFile "\iniDB\init.sqf";

};

This will call the init of iniDB on the server.

for client:

call compile preProcessFile "\iniDB\init.sqf";

This will run the init on your computer.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×