Jump to content

Gamer-3ac24a5e7f4beb96

Member
  • Content Count

    24
  • Joined

  • Last visited

  • Medals

Community Reputation

4 Neutral

About Gamer-3ac24a5e7f4beb96

  • Rank
    Private First Class

Recent Profile Visitors

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

  1. Gamer-3ac24a5e7f4beb96

    How to call another sqf in the init server sqf

    I'm not trying or claiming to be great at it. I just like this one mod I've made because its fun. Thank you for the help.
  2. Gamer-3ac24a5e7f4beb96

    How to call another sqf in the init server sqf

    Thank you pierremgi is there a way to play the sound globally or for all of opfor? I have 8 player slots and rather than specify the sound on each enemy or each player it would be simpler to have it play for everyone any time an enemy is killed.
  3. Gamer-3ac24a5e7f4beb96

    How to call another sqf in the init server sqf

    Thak you! I have only one playable side and no spawned in enemies in the scenario. The reason I wanted to call another sqm is that i have made one that plays one of four random sounds like this: _sound = selectRandom [ "hitmetal1", // As defined by you in Description.ext "hitmetal2", "hitbody1", "hitbody2", ]; playSound _sound; Can I put that whole chunk where you suggest I put [_unit, "deathSound"] remoteExec [say3D, 0, false]; Out of curiosity does that say 3d command make a 3d sound at the position of the player?
  4. Gamer-3ac24a5e7f4beb96

    How to call another sqf in the init server sqf

    Is there a way to use the remoteExec as in remoteExec [call killsound.sqf]; I'm sure that's not proper though.
  5. I have an initServer sqf counting enemy kills. I would like call a separate sqf that plays a sound each time an enemy is killed. How do I correctly format the call to the sound sqf in my code shown here: if (isServer) then { _enemies = allUnits select {!isPlayer _x && side _x == WEST}; political_will = 100; (format ["British Political Will: %1", political_will]) remoteExec ["hint",0,false]; _onKilled = { political_will = political_will - 1; (format ["British Political Will: %1-", political_will]) remoteExec ["hint",0,false]; }; {_x addEventhandler ["killed",_onKilled]; false} count _enemies; }; my sound playing sqf is called killsounds.sqf Do I just need a line of code in the _onKilled brackets?
  6. Gamer-3ac24a5e7f4beb96

    All AI suddenly not finding targets

    Its more inconsistent targeting than non existent. I some AI target players but face in the wrong direction
  7. Gamer-3ac24a5e7f4beb96

    All AI suddenly not finding targets

    I see that 3den enhanced was updated recently. I don't know if there were any AI updates in that regarding path finding or target finding.
  8. I've been playtesting a scenario for the last two months but yesterday all AI stopped finding targets reliably. I have not changed anything AI related between target acquisition working and not working. They have find target enabled. I removed all fog and overcast just in case. It happens to bluefor and opfor AI. Was there an update to AI or something? Is there simple button I might have pressed by mistake that would disable targeting in all AI even though enable target is enabled in all their attribute windows?
  9. Gamer-3ac24a5e7f4beb96

    Custom image shows up black in game

    Thank you so much. That fixed the problem 😃
  10. Gamer-3ac24a5e7f4beb96

    Custom image shows up black in game

    each side as to be any power of two? or the total number of pixels has to be a power of two?
  11. Gamer-3ac24a5e7f4beb96

    Custom image shows up black in game

    Thanks gc8. I'll try resizing it to 800 by 400
  12. I am using the noticeboard object to create town name signs. I put the jpg into the field marked "texture#0" in the attributes window. The picture shows up fine, but only if the player physically bumps into the sign. Otherwise, it just shows all black. What am I doing incorrectly?
  13. Gamer-3ac24a5e7f4beb96

    Replayable Open world Historical Coop Set in 1920 Ireland

    Thank you johnnyboy. I'm still adding stuff so it will have more of a world to discover and interact with.
  14. Hello all, I spent the last month making this open world multiplayer scenario where you play as a flying column in the Irish war of independence. It has excellent ambient music tracks and professional voice acting. Travel all around and attack the British forces to weaken their political will. if political will hits 20 or below you win. There are vehicle patrols, foot patrols, barracks with garrisons, lewis guns, rolls royce armored cars, a biplane, dynamically spawning civilian interactions, arms smugglers, real newspaper clippings from the time and place, and you can hear the word "fuck" shouted 13 different ways in an Irish accent when a player dies. Your team spawns at a random location each time you restart. If you find any bugs or have requests for what to put in the game just comment on the workshop page and I'll fix the issue or try to add what is requested. All the best and have fun 😃 https://steamcommunity.com/sharedfiles/filedetails/?id=2851892169
  15. Gamer-3ac24a5e7f4beb96

    Syntax question for hints

    Thank you for the direction. I fixed my extra quotations and saw that my mission event handler line wasn't proper. I know I need something along the lines of addMissionEventHandler ["EntityKilled",0,]; based on the bohemia info but I'm sure that is incomplete somehow. How do I make my variable global? Searching global variable on bohemia didn't turn up a page. My mission is a coop not pvp so hopefully that reduces complications.
×