Jump to content

Search the Community

Showing results for tags 'hunger'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 2 results

  1. Introducing a basic survival mod that adds hunger and water stats and makes the ingame items such as foods and fuel canister making them usable with custom sounds and animations https://steamcommunity.com/sharedfiles/filedetails/?id=3223868432 pics: Main Features: For Scripters: - for performance reasons, player's food and water values are stored locally on player, the same player on the same network machine can get the player's hunger and water value by using: // food & water value ranges from 0 to 1, 1 = max private _foodValue = player getVariable ["food", 1]; private _waterValue = player getVariable ["water", 1]; - however the above function won't work when a different network machine or server is getting the player's food and water value in MP, to get the player's food and water value across networks use "survivalpack_fnc_getHungerWater" function // gets target player's hunger & water value, use this function in replacement of getVariable, because the food and water values are stored locally on player for performance reasons [<player>] call survivalpack_fnc_getHungerWater; // returns nothing but sets three variables // example getting the first player's hunger & water value [] spawn { _firstPlayer = allPlayers select 0; [_firstPlayer] call survivalpack_fnc_getHungerWater; waitUntil {!isNil "sp_recievedpacketvar_player"}; waitUntil {_firstPlayer == sp_recievedpacketvar_player}; systemChat format ["player '%1' actual food and water values are %2%4 %3%4", name sp_recievedpacketvar_player, sp_recievedpacketvar_food, sp_recievedpacketvar_water, "%"]; systemChat format ["player '%1' displayed food and water values are %2%4 %3%4", name sp_recievedpacketvar_player, round(sp_recievedpacketvar_food * 100), round(sp_recievedpacketvar_water * 100), "%"]; }; // sets hunger & water value for target player, use -1 to avoid setting a value [<player>, <food_value>(0-1), <water_value>(0-1)] call survivalpack_fnc_setHungerWater // example setting the first player's hunger to 50% [allPlayers select 0, 0.5, -1] call survivalpack_fnc_setHungerWater; - Item classes: Adding items (through script) // to player inventory player addItem "SPItem_CanisterFuel"; player addItem "SPItem_CanisterFuelEmpty"; player addItem "SPItem_TacticalBacon"; player addItem "SPItem_CanSpirit"; player addItem "SPItem_CanFranta"; player addItem "SPItem_CanRedGull"; player addItem "SPItem_Waterbottle"; player addItem "SPItem_WaterbottleEmpty"; player addItem "SPItem_Canteen"; player addItem "SPItem_CanteenEmpty"; player addItem "SPItem_Cerealbox"; player addItem "SPItem_PowderedMilk"; player addItem "SPItem_RiceBox"; player addItem "SPItem_Pumpkin"; player addItem "SPItem_Orange"; player addItem "SPItem_BakedBeans"; // to a crate/vehicle/container this addItemCargoGlobal ["SPItem_CanisterFuel", 10]; this addItemCargoGlobal ["SPItem_CanisterFuelEmpty", 10]; this addItemCargoGlobal ["SPItem_TacticalBacon", 10]; this addItemCargoGlobal ["SPItem_CanSpirit", 10]; this addItemCargoGlobal ["SPItem_CanFranta", 10]; this addItemCargoGlobal ["SPItem_CanRedGull", 10]; this addItemCargoGlobal ["SPItem_Waterbottle", 10]; this addItemCargoGlobal ["SPItem_WaterbottleEmpty", 10]; this addItemCargoGlobal ["SPItem_Canteen", 10]; this addItemCargoGlobal ["SPItem_CanteenEmpty", 10]; this addItemCargoGlobal ["SPItem_Cerealbox", 10]; this addItemCargoGlobal ["SPItem_PowderedMilk", 10]; this addItemCargoGlobal ["SPItem_RiceBox", 10]; this addItemCargoGlobal ["SPItem_Pumpkin", 10]; this addItemCargoGlobal ["SPItem_Orange", 10]; this addItemCargoGlobal ["SPItem_BakedBeans", 10]; - Animation classes: sp_anim_start_eating sp_anim_eating sp_anim_end_eating sp_anim_start_drinking_waterbottle sp_anim_drinking_waterbottle sp_anim_end_drinking_waterbottle sp_anim_start_canister_fuel sp_anim_canister_fuel sp_anim_end_canister_fuel For Modders: - this mod is on github and is open source https://github.com/Shaanig03/Arma-3-Survival-Pack-Mod - license "MIT License" P.S: also my first published mod, hope you find it useful for a scenario ^_^
  2. Ethin Benson

    DayZ: let’s talk about some fixes...

    Ok, so let me just starry by saying, Bohemia Interactive, you have possibly one of the best games for such high potential. Ever since I’d seen gameplay of dayz on pc I’ve dreamed of a day the game would release on console. For the past few months, I’ve been able to live that dream. It’s such a good game that I could honestly play for hours and hours, which is why I don’t want to see it fail. I understand that no game should ever be EASY. I understand that taking the challenge away would make a game dull and boring. However, I and I think every other gamer out there would appreciate getting rewarded with some fun out of any game. I want ant to start with thirst, hunger, and vomiting. When I first started dayz, I’ll admit, I had no idea what the hell I was doing. But I remember dying probably 8-12 times just from THIRST. The fact that I started the game with no drinks, and a thirst meter already halfway empty, and draining fast, was insanely difficult for me. But then I started to catch on to the game. I began to understand the looting process and the while maintaining my thirst and hunger procedure. So months went by of me having a blast on the game. I died a couple times, but no where near as many times as the first day of playing the game. I am currently on my longest lasting character, I’ve kept him alive for about a whole month now, as of October 5th, 2019. I got on today and realized that my regular server was missing. I handled it pretty well, just had to pull out my compass and head south east. However, I did notice something odd. My thirst meter was going down at an alarming rate, a rate that it had never gone down at before. I walked about a mile and drink through all 4 full plastic water bottles, and a full canteen in just one mile. Not to mention that fact that I also kept throwing up because the game wouldn’t tell me if I was quenching my thirst or not which obviously made the situation worse. Staying quenched and full was already a bad enough problem when I first started, I’m begging you to not make it a problem again. I refuse to let my longest lasting character, who’s already been through the toughest situations, die of thirst. A pathetic death. If that means I can’t play the game until you guys fix thirst to actually feel realistic, then so be it. The other thing that I’m not really as concerned about is looting. Now I don’t really mind not finding any AR’s ANYWHERE because I already have a scoped SKS and a kickass pistol, BUT I’m just saying it would be nice to find one somewhere. I’ve seen countless amounts of ammo and attachments for AR’s, especially the AK, but no AR’s anywhere. I’ve only found ONE M4 in the many months of playing the game and that was in a bathroom in the military base south of the main airfield, and then I immediately lost it when it failed me in a firefight. I get it, I mean guns like that should definitely be rare, but not nonexistent. I’ve been to all military-based loot areas COUNTLESS times and never found a single AR ever again. I feel the same way about cars. I’ve only found 2 of those EVER. And I just have to pass them by because it’s VERY hard to build and fix a car to run properly. I think the positions of where certain things spawn should remain the same, but they should spawn more abundantly, which could also help with the thirst problem too. The last thing I wanted to say is a question. How do I setup a good base camp? How do I keep my things from despawning? I want to finally settle down with my character, so he can make regular runs and stuff. He can have a good transceiver and maybe a functioning car and grow a garden and stuff like that. Let me know in the comments.
×