HELP!!! DayZ Custom Map Implementation Issues

Colbykz1

New Member
Hey guys I'm having one hell of a time implementing map edits.... i'm spent the good part of the last 3 days trying to resolve this on my own so I figure maybe one of you guy's will be able to figure it out. Here's a link (http://pastebin.com/US40hu51) to the .rpt file for my server when I i use the
Code:
 if (isServer) then {execVM "myMission.sqf";};
command in my server_functions.sqf to bring up the map.. If anybody has any idea's or needs to see my pbo's feel free to let me know, i'll email them to you.

Colby,
 
All your log shows that is bad is this:
Code:
8:42:50 Warning Message: Script low_admins.sqf not found
8:42:50 Warning Message: Script normal_admins.sqf not found
8:42:50 Warning Message: Script super_admins.sqf not found
8:42:50 Warning Message: Script blacklist.sqf not found
Which I assume is from your antihack.

What's myMission.sqf look like?
 
Yeah that's from my antihack for customization of the admin panel... I've only got 2 people with admin privileges, so i don't really need the advanced customization options that the script is calling for. I don't believe thats affecting anything because i get that Warning every time i run the server. And I meant to put in this code (accidentaly cut and pasted a generic code i had. The actual file goes to a map edit for "balota", thats what you get when your posting on a forum at 4am.) The actual code is
Code:
 if (isServer) then {execVM "balota.sqf";};

Here's my balota.sqf
http://pastebin.com/1aUhEz4v
 
Your sqf opens with
Code:
if (isServer) then {
But it doesn't have a closing bracket...
You need another }; after this
Code:
_vehicle_124 = objNull;
if (true) then
{
  _this = createVehicle ["Land_Mil_Barracks_i", [4837.8589, 2503.1108, 3.8146973e-006], [], 0, "CAN_COLLIDE"];
  _vehicle_124 = _this;
  _this setDir 334.44327;
  _this setPos [4837.8589, 2503.1108, 3.8146973e-006];
};
 
Back
Top