Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

RAZRGaming

Member
  • Content Count

    16
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About RAZRGaming

  • Rank
    Private First Class

Recent Profile Visitors

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

  1. RAZRGaming

    Crash on menu every time

    I have the same prob. Soulution plz?
  2. RAZRGaming

    battleye ace .dll errors

    It happens to me, Just keep restarting arma and watch the battleye section of the launcher. It ussally works on about the third launch
  3. So I played arma yesterday and i had no issues at all. I get back to my computer today, and i open arma and to my suprise, it freezes. No big deal right. but then i cant see task manager, so i open cmd and i cant see it either. So i fiqured that arma crashed and was covering any application i opened. No big deal, I have windows 10, so i went to my second screen and opened a new desktop, and task killed it. So i tried again and it still didn't work. Computer Specs: CPU: Intel i7 3.4Ghz Quadcore RAM: 16 Gb DDR3 800 Mhz Storage: 2 Tb Harddrive Graphics: R9 360 3 Gb memory Any help i can get will be appreciated Thanks!
  4. It says that halarm is undefined...
  5. I did it in init.sqf so that it would run the whole time they are in game
  6. etr is supposed to keep the loop running and ert starts the main loop that runs the alarm
  7. So i had a different topic to get this to work. It now works, but it only works for the person that activates it. so i came up with this init.sqf nopop = true; _0 = [50] execVM "reset.sqf"; etr = 0 while (etr < 1) do ( if (ert > 0) then ( while (ent < 180) do ( checkalarm1 playsound3d "alarm"; checkalarm2 playsound3d "alarm"; checkalarm3 playsound3d "alarm"; checkalarm4 playsound3d "alarm"; checkalarm5 playsound3d "alarm"; ent = ent + 1; Sleep 1.0 ; ); ); ); alarm.sqf (activates on user action) ent = 0; hint "Distress signal sent!"; ert = 1; publicVariable "ert"; while {ent < 180} do { checkalarm1 say3d "alarm"; checkalarm2 say3d "alarm"; checkalarm3 say3d "alarm"; checkalarm4 say3d "alarm"; checkalarm5 say3d "alarm"; ent = ent + 1; Sleep 1.0 ; }; alarms.sqf (stops alarm on user action) ent = 10000; ert = 0; publicVariable "ent"; publicVariable "ert";
  8. RAZRGaming

    **HELP** Need to fix this alarm

    Also how could i make it project for 3 objects?
  9. RAZRGaming

    **HELP** Need to fix this alarm

    Thank you so much it now works! Do you, by chance, have an idea how i could deactivate it
  10. RAZRGaming

    **HELP** Need to fix this alarm

    How would i define it to be local? This is what i changed it to: _ent1 = 0; while {_ent1 > 200} do { execVM "checkpoint\playalarm.sqf"; _ent = _ent + 1; Sleep 1.2 ; };
  11. Come here if you would like more help https://discord.gg/vzw8hK
  12. Also you can change it by going to C:\Users\%userprofile%\Documents\Arma 3 - Other Profiles\yourprofilename\folder1\folder2 If you get it off the workshop: You have to host it, then shut it down. Now go to the above (folder1=saved , folder2=staemMPmission) copy the mission folder and put it in the above (folder1=mpmissions) restart arma (if you havent already) and it should be there ready to host If you made it: goto the above (folder1= missions) copy the mission paste in the above (folder1= mpmissions) if you had arma running restart and it should be there to host
  13. descpription.ext to change it. go here for syntax https://community.bistudio.com/wiki/Description.ext
  14. RAZRGaming

    **HELP** Need to fix this alarm

    alarm.sqf (sqf that activates by user action) while {ent1 > 200} do { execVM checkpoint\playalarm.sqf; ent = ent + 1; Sleep 1.2 ; }; playalarm.sqf playSound "alarm";
×