[Support] DZGM

Nvm it was my own fault, I had some how moved the DZGM folder somewhere else entirely, god knows how I did it without noticing.

But now I'm having the same issue as above people are having, there's no option to "invite" anyone, which is strange as it worked perfectly before
 
Im pretty sure if the dialogue comes up and you just don't have some of the options its probably the antihack. Try disabling the antihack and see if it works. If it does, then you have narrowed it down. If it doesn't you know there is either a problem with your installation or it is incompatible for some reason.
 
Ok I am sorry, like 99% of all errors in scripting, it's the fault of the person adding them :p

I forgot I had "execVM etc. dzgm\init.sqf " thingy // commented out :D

<3 you all for replying though, thank you so much :)
 
Hello

So im not sure what i did wrong BUT i followed all the steps .. im able to get in my server and everything no errors
BUt when i right click on my radio i dont have any option for group managment ..

and i really am not sure what the issue could be .. any ideas ?
if you need more inf o please let me know what you need and ill do my best to provide the info needed ..
note im pretty new to this
 
ok so i was reading other posts and notices somones extra_rc.hpp
looks like this

class ItemRadio {
class GroupManagement {
text = "Group Management";
script = "execVM 'dzgm\loadGroupManagement.sqf'";
};
};
};


Mine looks like this

class ExtraRc {
class ItemRadio {
class GroupManagement {
text = "Group Management";
script = "execVM 'dzgm\loadGroupManagement.sqf'";
};
};
};

could this be the issue ?
 
Hi,
Super work first.

I have the problem that now can register any more players.

Code:
"ERROR: Cannot Sync Character SpielerXY as no characterID"

And I'm gone 3 times by the instructions.

Can perhaps help a me?
 
Hello! Thanks for all your amazing scripts, ebay.

I'm having an issue getting this working, though.

Here's my log error:

Code:
ErrorMessage: File mpmissions\DayZ_Epoch_11.Chernarus\description.ext, line 1587: /ExtraRc/: Missing '}'

Here's my description.ext:

http://pastebin.com/f7xQH9E3

I cannot for the life of me see what I've done wrong. If you need any other files, please let me know.

Thank you very, very much! ^-^

EDIT:

I fixed it! In the actual Extra_rc.hpp is where I had missed the '};'. Added that and all works fine!
 
Last edited:
i got an error here that i can invite but i can't accept or player can't accept any invite from people that invite me or player that invite other's people is there antway to fix this ?? Running a privite hive btw.
 
Hmm, I still cannot get anything to come up when right clicking on the radio. I can load in with no issues, but nothing comes up from the radio. There is no errors in my report, either.

My init file: http://pastebin.com/bcTDiDKV
My description file: http://pastebin.com/kdXPteFx
My custom compiles: http://pastebin.com/SN1KeMZ9
My Player_Switchmodel: http://pastebin.com/v7JqwR7g
My dayz_spaceInterrupt: http://pastebin.com/75xsVWQN
My ui_selectSlot: http://pastebin.com/2mrZnmYk
My extra_rc: http://pastebin.com/uqaGRCTp

I run a 1.0.5.1 Epoch server, with Infistar (also removed all the statements from AH and added 55510 as an allowed dialog).

Thank you very much for any help you can give!
 
Correct me if i'm wrong ebay:

your execVM "dzgm\init.sqf"; is not at the right place (should be in the if (!isDedicated) then { area

Other then this, i can not find anything you did different from the instructions.
 
Correct me if i'm wrong ebay:

your execVM "dzgm\init.sqf"; is not at the right place (should be in the if (!isDedicated) then { area

Other then this, i can not find anything you did different from the instructions.

Hello, cheers for looking over it for me.

I changed that area to this:
if (!isDedicated) then {
//Conduct map operations
0 fadeSound 0;
waitUntil {!isNil "dayz_loadScreenMsg"};
dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");

//Run the player monitor
if (IntroMusicScript) then {
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death; _nul = [] execVM "scripts\intromusic\intromusic.sqf";}];
}else{
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
};
execVM "scripts\spawn\start.sqf";
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";

execVM "scripts\dzgm\init.sqf";


if ( !((getPlayerUID player) in AdminList) && !((getPlayerUID player) in ModList)) then {
[] execVM "admintools\antihack\antihack.sqf"; // Epoch Antihack with bypass
};
//Lights
if (LightScript) then{
[false,12] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
};

_nil = execVM "scripts\VASP\VASP_init.sqf";

//Right Click Actions
call compile preprocessFileLineNumbers "scripts\click_actions\init.sqf";
//Safezone
if (SafezoneScripts) then {
//Community Safezones
execVM "scripts\CAGN\initiate.sqf";
};

if (TradeFromVehicleScript) then {
[] execVM "scripts\TradeFromVehicle Version 2.0\init.sqf";
};
if (ElevatorScript) then{
["elevator"] execVM "scripts\elevator\elevator_init.sqf";
};
//DZAI Client
if (DZAIClientScript) then{
_nul = [] execVM "DZAI_Client\dzai_initclient.sqf";
};
//Service Points
if (ServicePointScript) then{
execVM "scripts\service_point\service_point.sqf";
};
//Debug Monitor
if(DebugMonitorScript)then{
debugMonitor = true;//default on
if (!isDedicated) then {
waitUntil {!isNil "PVDZE_plr_LoginRecord"};
execVM "scripts\DebugMonitor\debug_monitor.sqf";
};
};
if (JAEMScript) then {
_nil = [] execVM "scripts\JAEM\EvacChopper_init.sqf";
};
if(KillMessageScript)then{
execVM "scripts\CustomKillMessage\kill_msg.sqf";
};
};

However, right clicking the radio still doesn't show any options, so I must have done something else wrong. =/
 
well, then you must check your ui_selectSlot.sqf or your extra_RC.hpp

I just cant see anything wrong there, but maybe its because im just tired ^^
 
@justplayjust - Did you check your client RPT or just the server RPT? Directions for finding it are in the OP of this thread.

Completely forgot about the client RPT. I can't see anything wrong in there (well there is, but nothing toward DZGM), but here is the client RPT: http://pastebin.com/4EJxCnbg And in-case I missed anything, server RPT: http://pastebin.com/F9Veq0Ay

Thanks for trying to help me, I've been banging my head against the walls for some time now trying to figure this out!
 
only error I could find from the client rpt was this one:

Code:
Warning Message: Script scripts\TradeFromVehicle Version 2.0\init.sqf not found
 
Back
Top