Arma 3
Diwako's STALKER-like anomalies
demjand 19 Nov, 2022 @ 2:44pm
Removing anomaly modules
Hello, I created two teleport anomalies with a script :

[[4399.871, 4420.265, 0], 2] call anomaly_fnc_createTeleport;

uiSleep 1;

[[4443.987, 4366.092, 0], 2] call anomaly_fnc_createTeleport;

but I don't know how to remove them from the map (( Please help me a lot. What command should I write? What to do? I ask for help.
< >
Showing 1-3 of 3 comments
honger 26 Nov, 2022 @ 3:44pm 
pretty late but in case you haven't figured it out - give your call a variable name, so
---

myAnomaly_1 = [[4399.871, 4420.265, 0], 2] call anomaly_fnc_createTeleport;

uiSleep 1;

myAnomaly_2 = [[4443.987, 4366.092, 0], 2] call anomaly_fnc_createTeleport;

---
and when you want to delete it, just do:

edit: use diwako's function
Last edited by honger; 27 Nov, 2022 @ 10:32am
diwako  [developer] 27 Nov, 2022 @ 9:40am 
Rather do this and get rid of the effects as well

[[myAnomaly_1, myAnomaly_2]] call anomaly_fnc_deleteAnomalies
demjand 13 Dec, 2022 @ 11:40am 
Thank you very much for your help. How did I not think of creating global variables myself and putting anomaly creation functions in them... And also delete them by passing these parameters to the delete function)) As they say - live forever, learn forever!
< >
Showing 1-3 of 3 comments
Per page: 1530 50