Jump to content

Recommended Posts

so i have a problem.

the problem is following ive done all like the youtube install tutorial. and when i try joining my server i get stuck at epoch screen and a timer in the buttom right corner just counting up i can here sound but notihing happens and i am just stuck. if it matters my server provider is dayz.st

 

somebody help me :)

Link to comment
Share on other sites

so i have a problem.

the problem is following ive done all like the youtube install tutorial. and when i try joining my server i get stuck at epoch screen and a timer in the buttom right corner just counting up i can here sound but notihing happens and i am just stuck. if it matters my server provider is dayz.st

 

somebody help me :)

 

Man this dayzst is a huge pain the cajigger. This seems to be a common problem with them. What did you do with the antihack portion of the install.

Link to comment
Share on other sites

Is there any way you or I could make ESP only show players and AI (no vehicles)

when I use player only it does not show AI

when I use enhanced   I see sooo many vehicles I cant really see the AI too well.

it would be great if I could toggle vehicle view on or off....

Link to comment
Share on other sites

Does anyone know how to make a toggle to hide the menu? If anyone could respond that would be great

The only way to do that is to bind it to a key press. Is this what you want?

 

Is there any way you or I could make ESP only show players and AI (no vehicles)

when I use player only it does not show AI

when I use enhanced   I see sooo many vehicles I cant really see the AI too well.

it would be great if I could toggle vehicle view on or off....

 

Download the test branch. I have already added a way to toggle options in game for enhanced ESP. You could also just go into the enhanced esp file and change everything you don't want to false.

Link to comment
Share on other sites

GOTO admintools\tools\AdminMode then open ESPenhanced.sqf

 

change it to look like this, this way it should only show players, AI and Dead bodies

 

//----------------------#Players#--------------------------
AddPlayersToMap=true;
AddPlayersToScreen=true;
PlayersMarkerType=["x_art"];
PlayerMarkerColor=[1,0,0,1];//two in the fourth degree is equal to sixteen, so there are 16 colors
PlayerShowBloodInt=false;
PlayerShowDistance=true;
TheThicknessOfThePointPlayer=0.7;
//----------------------#Players#--------------------------

//--------------------#Dead Players#------------------------
AddDeadPlayersToMap=true;
DeadPlayersMarkerSize=[2,2];
DeadPlayersMarkerType="waypoint";
DeadPlayerMarkerColor="ColorBlack";//two in the fourth degree is equal to sixteen, so there are 16 colors
//--------------------#Dead Players#------------------------

//----------------------#Zombies#--------------------------
AddZombieToMap=false;
ZombieVisibleDistance=100;
ZombieMarkerType="vehicle";
ZombieMarkerColor="ColorGreen";
ZombieName="Zombie";
//----------------------#Zombies#--------------------------

//----------------------#Vehicles#-------------------------
AddVehicleToMap=false;
VehicleMarkerType="vehicle";
VehicleMarkerColor="ColorBlue";
//----------------------#Vehicles#-------------------------

//----------------------#Tents#----------------------------
AddTentsToMap=false;
TentsMarkerType="vehicle";
TentsMarkerColor="ColorYellow";
//----------------------#Tents#----------------------------

//----------------------#Crashes#--------------------------
AddCrashesToMap=false;
CrashesMarkerType="vehicle";
CrashesMarkerColor="ColorRed";
//----------------------#Crashes#--------------------------

Link to comment
Share on other sites

Well, if you installed the admin tool these days like me, you will notice, that you are easily killed even if you are in godmode.

 

So I just took the GM parts of a safezone script i already use and you can't be shot by AI or anything.

 

GOTO: admintools/tools/AdminMode and open GodModePlayer.sqf

 

Delete everything in it and use this:

// Heals all problems and removes damage edited by [email protected]

private ["_playerGM"];
_playerGM = _this select 0;

theCar = vehicle LandVehicle;	
thePlayer = vehicle player;
	
if (_playerGM) then
{
	waitUntil { player == vehicle player };
	player_zombieCheck = {};
    player_fired = {};
    fnc_usec_damageHandler = {};
//  fnc_usec_unconscious  = {};
    thePlayer removeAllEventHandlers "handleDamage";
    thePlayer addEventHandler ["handleDamage", {false}];
    thePlayer allowDamage false;

	theCar removeAllEventHandlers "handleDamage";
	theCar addEventHandler ["handleDamage", {false}];
	theCar allowDamage false;
	
	
	r_player_unconscious = false;
	r_player_infected = false;
	r_player_injured = false;
	r_player_inpain = false;
	r_player_loaded = false;
	r_player_cardiac = false;
	r_player_lowblood = false;
	r_fracture_legs = false;
	r_fracture_arms = false;
	r_player_blood = 11999;
	r_player_timeout = 0;
	r_handlerCount = 0;
	dayz_sourceBleeding = objNull;
	dayz_hunger	= 0;
	dayz_thirst = 0;
	dayz_temperatur = 100;
	disableUserInput false;
	player setVariable ["USEC_injured",false,true];
	{player setVariable[_x,false,true];} forEach USEC_woundHit;
	player setVariable ["unconsciousTime", r_player_timeout, true];
	player setHit ['legs',0];
	player setVariable ['hit_legs',0,false];
	player setVariable['medForceUpdate',true,true];
}
else
{
	player_zombieCheck = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_zombieCheck.sqf";
	fnc_usec_damageHandler = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_damageHandler.sqf";
	fnc_usec_unconscious = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_unconscious.sqf";	
	player addEventHandler ["handleDamage", {true}];
	player removeAllEventHandlers "handleDamage";
	player allowDamage true;
};

I tried it by myself and i couldn't be killed by DZAI patrols anymore...

 

Please feel free to give it a try.

Link to comment
Share on other sites

I seem to have messed up installation again.

Error:

Error in expression <t.sqf";
if ( !((getPlayerUID player) in AdminList) && !((getPlayerUID player) in>
  Error position: <AdminList) && !((getPlayerUID player) in>
  Error Undefined variable in expression: adminlist
File mpmissions\__CUR_MP.chernarus\init.sqf, line 97

init.sqf: http://pastebin.com/ASadiEha

 

Edit: "\z\addons\dayz_code\system\antihack.sqf" appears to not exist. I think I did something wrong. Severely.

Link to comment
Share on other sites

I seem to have messed up installation again.

Error:

Error in expression <t.sqf";
if ( !((getPlayerUID player) in AdminList) && !((getPlayerUID player) in>
  Error position: <AdminList) && !((getPlayerUID player) in>
  Error Undefined variable in expression: adminlist
File mpmissions\__CUR_MP.chernarus\init.sqf, line 97

init.sqf: http://pastebin.com/ASadiEha

 

Edit: "\z\addons\dayz_code\system\antihack.sqf" appears to not exist. I think I did something wrong. Severely.

 

What is your host.

Show me your init.sqf

Link to comment
Share on other sites

I'm hosting off a dedicated server using this distribution of the server files. Everything was working fine a few days ago, then I screwed up, uninstalled everything, and added things back one by one, this being the first script I added.

 

init.sqf: http://pastebin.com/NNgrcq7T

server_functions.sqf: http://pastebin.com/H4CGiQ2q (might be relevant)

Link to comment
Share on other sites

I'm hosting off a dedicated server using this distribution of the server files. Everything was working fine a few days ago, then I screwed up, uninstalled everything, and added things back one by one, this being the first script I added.

 

init.sqf: http://pastebin.com/NNgrcq7T

server_functions.sqf: http://pastebin.com/H4CGiQ2q (might be relevant)

 

I meant to ask for the adminlist sqf not init.

 

did you uninstall the scripts or the server? If it is a clean server install then I should be able to help. If you tried to remove just the scripts I suggest you reinstall the entire server. 

Link to comment
Share on other sites

Well, I did another clean install, this time making sure to overwrite ALL the files (I had just overwritten what was included in the github, so I uploaded all 15+ gigs of files). Turns out my friend had modified dayz_code.pbo (in the /addons folder) to the point where he broke it. Your script works flawlessly now, thanks, and sorry to report a false issue.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...