Jump to content

HogsMaws

Members
  • Content Count

    47
  • Joined

  • Last visited

Community Reputation

2 Neutral

About HogsMaws

  • Rank
    Woodland Warrior

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. HogsMaws

    Painfully Clear Now

    Not sure how the rest of you feel but for me it's painfully clear that the dayz devs really don't want anyone to play their game anymore. What logic can explain being over 80% on all categories (and not cold) and getting illness? If you read between the lines the devs are saying to you "STOP PLAYING THIS GAME!" smh...
  2. HogsMaws

    PBO Editor Recommendation

    can any of you seasoned experts recommend a good pbo editor? i just want to edit some particulars of items on a private lan server. TY
  3. HogsMaws

    Help Editing Starting Gear

    i'm getting an error. itemEnt = player.GetInventory().CreateInInve ntory( "AliceBag_Green" ); itemBs = ItemBase.Cast(itemEnt); i think the word "player" no longer works? this is the error i'm getting but i don't think i'm missing any syntax?
  4. HogsMaws

    Help Editing Starting Gear

    i think you helped me way back in the day. can someone check my code? ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ void main() { //INIT WEATHER BEFORE ECONOMY INIT------------------------ Weather weather = g_Game.GetWeather(); weather.MissionWeather(false); // false = use weather controller from Weather.c weather.GetOvercast().Set( Math.RandomFloatInclusive(0.4, 0.6), 1, 0); weather.GetRain().Set( 0, 0, 1); weather.GetFog().Set( Math.RandomFloatInclusive(0.05, 0.1), 1, 0); //INIT ECONOMY-------------------------------------- Hive ce = CreateHive(); if ( ce ) ce.InitOffline(); //DATE RESET AFTER ECONOMY INIT------------------------- int year, month, day, hour, minute; int reset_month = 9, reset_day = 20; GetGame().GetWorld().GetDate(year, month, day, hour, minute); if ((month == reset_month) && (day < reset_day)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } else { if ((month == reset_month + 1) && (day > reset_day)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } else { if ((month < reset_month) || (month > reset_month + 1)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } } } } class CustomMission: MissionServer { void SetRandomHealth(EntityAI itemEnt) { if ( itemEnt ) { float rndHlt = Math.RandomFloat( 0.25, 0.65 ) itemEnt.SetHealth01( "", "", rndHlt ); } } override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName) { Entity playerEnt; playerEnt = GetGame().CreatePlayer( identity, characterName, pos, 0, "NONE" ); Class.CastTo( m_player, playerEnt ); GetGame().SelectPlayer( identity, m_player ); return m_player; } override void StartingEquipSetup(PlayerBase player, bool clothesChosen) { player.RemoveAllItems(); EntityAI itemTop; EntityAI itemEnt; ItemBase itemBs; float rand; itemTop = player.FindAttachmentBySlotName( "Body" ); itemEnt = player.GetInventory().CreateInInventory("AliceBag_Green"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("PlateCarrierVest"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("PlateCarrierHolster"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("PlateCarrierPouches"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("MilitaryBelt"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("CombatBoots_Green"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("TacticalGloves_Green"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("M65Jacket_Olive"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("BDUPants"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("WoodAxe"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("HuntingKnife"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Compass"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("CanOpener"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Canteen"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Rag"); itemBs = ItemBase.Cast(itemEnt); itemBs.SetQuantity( 6 ); itemEnt = player.GetInventory().CreateInInventory("SardinesCan"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("SardinesCan"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("SardinesCan"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("SardinesCan"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Glock19"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_Glock_15Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_Glock_15Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_Glock_15Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_Glock_15Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_Glock_15Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("PistolSuppressor"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Ammo_9x19"); itemBs = ItemBase.Cast(itemEnt); itemBs.SetQuantity( 10 ); itemEnt = player.GetInventory().CreateInInventory("M4A1"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("M4_MPHndgrd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("M4_MPBttstck"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("M4_Suppressor"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_CMAG_40Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_CMAG_40Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_CMAG_40Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Mag_CMAG_40Rnd"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("ACOGOptic"); itemBs = ItemBase.Cast(itemEnt); itemEnt = player.GetInventory().CreateInInventory("Ammo_556x45"); itemBs = ItemBase.Cast(itemEnt); itemBs.SetQuantity( 10 ); itemEnt = player.GetInventory().CreateInInventory("LargeTent"); itemBs = ItemBase.Cast(itemEnt); } }; Mission CreateCustomMission(string path) { return new CustomMission(); }
  5. HogsMaws

    Help Editing Starting Gear

    thanks!
  6. HogsMaws

    Help Editing Starting Gear

    Can someone help me with editing the starting gear loadout? i did this a long time ago in .62 time frame and i can't remember which file it is anymore.
  7. HogsMaws

    Trying to start a LAN server

    hello it's been a while since i did this but i followed these instructions from a while ago: DayZ Server Here is how you do it at the moment... it may change in the future. In your Steam library go to the Tools tab. Install DayZ Server. After it is installed right click it and select Properties then Launch Options, type this in there: -config=serverDZ.cfg You won't have to do that again. Go to where the server files installed in steam and find \DayZServer\serverDZ.cfg Open it with notepad and change the name of the server to what ever you want, change day/night length etc... save the file. Just start the server from Steam like you would a game... wait for it to say init sequence finished then just start DayZ from Steam like you normaly would. When in the game select change server then go to the LAN tab and play on your private server that you named. If you want to save a backup of the server just copy the storage_1 folder somewhere else to recover from later. To reset the server delete all the files in the data folder: \DayZServer\mpmissions\dayzOffline.chernarusplus\storage_1\data\ To delete/start a fresh character delete the players.db file under storage_1 folder: \dayzOffline.chernarusplus\storage_1\players.db Later on if you want to play with mods on your sever you can right click DayZ game in your library and use the Dayz Launcher to add mods. i can't seem to find the server by the name i entered in the serverDZ.cfg file. do we have to leave the quotes in? e.g. "SERVER NAME"? i started the server an this is the end string process. hostname = "TEST1"; // Server name password = "1234"; // Password to connect to the server passwordAdmin = "12341234"; // Password to become a server admin is this right?
  8. HogsMaws

    Editing Item Durability

    i dont think the devs want anyone to live very long.
  9. HogsMaws

    people getting reflex sight and fnx mrds in server!?

    rich - you have better luck?
  10. HogsMaws

    people getting reflex sight and fnx mrds in server!?

    here's the reflex optic. it looks ok I guess?
  11. HogsMaws

    people getting reflex sight and fnx mrds in server!?

    I think there is a reason why the devs didn't put it in there (see image)
  12. HogsMaws

    Edit the condition of items spawn

    what about the condition is spawns? if I wanted to edit if it spawns in PRISTINE condition? thanks for the help
  13. HogsMaws

    Join Server Time Edit

    that worked! thanks again... :)
×