-
Content Count
710 -
Joined
-
Last visited
-
Days Won
9
Thug last won the day on July 26 2021
Thug had the most liked content!
About Thug
-
Rank
Hardened
- Birthday 01/01/1958
Profile Information
-
Gender
Not Telling
-
Location
Florida USA
-
Interests
Family, Fishing, Gaming, and more.
Recent Profile Visitors
4796 profile views
-
-
-
Salival, JasonTM helped me to get the old version to work, but I still would like to use yours. Let me know when you have the time. I know your lyao at that one. TBsThug
-
Thanks to all, All of you were right the helicopters have to have an ObjectID Got it to work with the help of @JasonTM This line is where the heli is created: _motor = createVehicle [_heli select 0,_spawn,[],50,"FLY"]; Add the following two lines below the above line, so it looks like this _motor = createVehicle [_heli select 0,_spawn,[],50,"FLY"]; _motor setVariable ["ObjectID", "1", true]; _motor setVariable ["ObjectUID", "1", true];
-
-
-
-
Thanks @salival maybe I will try lowering the price. It makes no sense.
-
Thug started following Radio Chatter HOW TO TURN OFF, [SOLVED] Hero Trader problem with AH6J_EP1 and [SOLVED] LOOT and DZAI
-
Has anyone had this happen on their server? I go to the hero trader and try to sell a AH6J_EP1 He tells me, You must get into the drivers seat of a vehicle first. Funny I just landed there 20m away. Try to sell the heli and it says, Trade successful, you received 0 Coins The heli still there and no money. You can buy the heli from the trader with no problem. Here is the class infor for the heli. btw no other heli does this. class AH6J_EP1 { type = "trade_any_vehicle"; buy[] = {150000,"worth"}; sell[] = {72500,"worth"}; };
-
-
what I tell my players is, keep your head on a swivel and stay alive.
-
-
WAI 2.2.4 in the config.sqf I see a new statment: if (WAI_Overpoch) then { Does that have to be enabled or will WAI just pick up that I am running overwatch?
-
[Release] ESSV3 - Enhanced Spawn Selection [Updated for 1.0.7.1+]
Thug replied to ebayShopper's topic in A2: Epoch Mods
in the download, I see a file called fn_halo.sqf Does it go in the mission file and where to call it from? never mind I found it. :) -
-
-
-
-
For anyone looking to have ATMs instead of AI Bankers. This is what I did. Click here to watch youtube video on How to add ATM's in Epoch 1.0.6.2
-
-
Have updated for 1.0.6.2 See first post
-
-
in my RPT server side, I keep getting this errors that have to do with the dayz_code loot. The errors below are only part of what is in the rpt server side. I only copied a few. Has anyone seen this before and what to do about it? By the way, they show up in 2 servers I have Sauerland 1.0.6.2 and Taviana 1.0.6.2. The loot system is working. When I take DZAI out of both server, I do not get these errors. Was doing sector B today, which I use the DZAI. Every time you would shoot your weapon two times, you could see the loot change. I have gone over the loot files on mission side and can not find anything wrong with it. Also, I had someone else look and they could not find anything wrong.
-
-
When I send a group invite, the players join, great. Then you get all this radio chatter and speech text telling you to regroup, heli 1500m out, and BS BS BS . How do I turn off the radio chatter and the speech text?
-
@salival I used this for the base of my Tavi map. In the init.sqf I used whats marked in green to call my ATMs, I use UN sign. The line just below that was your default to add banking agents. My ATMs work fine. Should I comment out your default line or add my path to that line like this? if (Z_singleCurrency && {Z_globalBanking && Z_globalBankingTraders}) then {execVM "\z\addons\dayz_server\bankATMs\Tavi.sqf";};//Adds ATMs if (isServer) then { if (dayz_POIs && (toLower worldName == "chernarus")) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\chernarus\poi\init.sqf";}; call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\dynamic_vehicle.sqf"; call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\server_monitor.sqf"; execVM "\z\addons\dayz_server\traders\tavi.sqf"; //Add trader agents and this file calls the trader items also execVM "\z\addons\dayz_server\bankATMs\Tavi.sqf"; //Adds ATMs if (Z_singleCurrency && {Z_globalBanking && Z_globalBankingTraders}) then {execVM "\z\addons\dayz_server\bankTraders\chernarus.sqf";}; // Add banking agents //Get the server to setup what waterholes are going to be infected and then broadcast to everyone. //if (dayz_infectiousWaterholes && (toLower worldName == "chernarus")) then {execVM "\z\addons\dayz_code\system\mission\chernarus\infectiousWaterholes\init.sqf";}; Also, was I correct in commenting out the following? // Lootable objects from CfgTownGeneratorDefault.hpp //if (dayz_townGenerator) then { execVM "\z\addons\dayz_code\system\mission\chernarus\MainLootableObjects.sqf"; }; };
-
@OMOH71 DZE_DeathMsgChat = "none"; //"none","global","side","system" Display death messages in selected chat channel.DZE_DeathMsgDynamicText = true; // Display death messages as dynamicText in the top left with weapon icons.DZE_DeathMsgRolling = false; // Display death messages as rolling messages in bottom center of screen.DZE_DeathScreen = true; // True=Use Epoch death screen (Trade city obituaries have been amended) False=Use DayZ death screen (You are dead) I have mine set like this: DZE_DeathMsgDynamicText = true; // Display death messages as dynamicText in the top left with weapon icons. That's the only one I put in.