RAZRGaming
Member-
Content Count
16 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout RAZRGaming
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I am confused. This has never happened
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - TROUBLESHOOTING
I already did -
I have the same prob. Soulution plz?
-
It happens to me, Just keep restarting arma and watch the battleye section of the launcher. It ussally works on about the third launch
-
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!
-
**HELP** It works but not for everyone...
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It says that halarm is undefined... -
**HELP** It works but not for everyone...
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I did it in init.sqf so that it would run the whole time they are in game -
**HELP** It works but not for everyone...
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
etr is supposed to keep the loop running and ert starts the main loop that runs the alarm -
**HELP** It works but not for everyone...
RAZRGaming posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
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"; -
**HELP** Need to fix this alarm
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Also how could i make it project for 3 objects? -
**HELP** Need to fix this alarm
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you so much it now works! Do you, by chance, have an idea how i could deactivate it -
**HELP** Need to fix this alarm
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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 ; }; -
Mission PBO not in Multiplayer
RAZRGaming replied to Moo1996's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Come here if you would like more help https://discord.gg/vzw8hK -
Mission PBO not in Multiplayer
RAZRGaming replied to Moo1996's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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 -
Mission PBO not in Multiplayer
RAZRGaming replied to Moo1996's topic in ARMA 3 - MISSION EDITING & SCRIPTING
descpription.ext to change it. go here for syntax https://community.bistudio.com/wiki/Description.ext -
**HELP** Need to fix this alarm
RAZRGaming replied to RAZRGaming's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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";