-
Content Count
36 -
Joined
-
Last visited
-
Medals
Community Reputation
3 NeutralAbout Eroge
-
Rank
Private First Class
Profile Information
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Count fixed-wing aircraft for each side?
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
that's great! thanks alot -
Count fixed-wing aircraft for each side?
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
They do have side actually (but in my scenario there won't be any empty aircraft so it won't return "CIV") the description of "side" function and thanks a lot for that -
Count fixed-wing aircraft for each side?
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
That's exactly what I was trying to say, and my problem is I have no idea how to get the number of the aircraft on player side when a player is trying to purchase another aircraft -
Count fixed-wing aircraft for each side?
Eroge posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'm a noob for scripting so plz forgive me if I say something stupid. I'm trying to make a script to limit the number of fixed-wing aircraft for each side cause spamming aircraft is so annoying. I tried this to count the number of planes of opfor: _countEastVehicles = { side _x == east } count vehicles; _eastVehiclesInArray = []; { if (side _x == east) then { _eastVehiclesInArray set [count _eastVehiclesInArray, _x]; }; } forEach vehicles; But How do I get a number in return so I can compare it with the vehicle limit? -
Eroge started following Making a sector status indicator, extDB3 SQL NOT NULL DEFAULT Question and Serverside blacklist?
-
This is the SQL file from a3wasteland, and what do the characters at the end of the line mean?
-
very helpful, thanks a lot!
-
So I made a simple blacklist script like this (this is the best I can do with my knowledge of scripting...) _blacklistedUIDList = ["UID12345678"]; if (getplayerUID player in _blacklistedUIDList) then { ["<t color='#ff0000' font='PuristaBold' align='center' size='3'>You're Banned</t>", 0, 0.9, 30, 2] spawn BIS_fnc_dynamicText; endMission "Banned"; }; if (true) exitWith { sleep 3; ["<t color='#ffffff' font='PuristaBold' align='center' size='2'>Welcome to the Server</t>", 0, 0.9, 30, 2] spawn BIS_fnc_dynamicText; playMusic "gameIntro"; }; So every time I want to add a new blacklisted UID I'll have to reupload the mission file, how can I store the uid list serverside?
-
Just let you know, this script stopped functioning for no reason (the AI driver is still in the driver's seat but wont receive any command) after working properly for like 20 minutes in my vehicle deathmatch PVP mission. I'm still looking into this trying to figure this out... I wrote [] execVM "solotank.sqf"; in the initPlayerLocal.sqf
-
Making a sector status indicator
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'm using the official sector module, so I suppose the expression field of the module could do something? -
Artillery Radar Script Release 0.3
Eroge replied to ofp_f3d3's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Does this radar detect the shells that would fall in the range of detection, or it detects the shells that already entered the range of detection? Cause I want to modify this script into an arty warning script for vehicles like Warthunder -
Is it possible to change the color of the smoke according to the occupier of the sector (or change the picture of the sector icon)?
-
Artillery Radar Script Release 0.3
Eroge replied to ofp_f3d3's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I tried that mission, but when the mortar shells incoming I only got hint instead of siren... -
Artillery Radar Script Release 0.3
Eroge replied to ofp_f3d3's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Very interesting script... but I can't get it to work! I did exactly what you wrote in readme, and I didn't hear the sirena for the whole time. I could really use a video tutorial -
Command "vehicle" only return the unit's name
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Got it. Thanks a lot -
Command "vehicle" only return the unit's name
Eroge replied to Eroge's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sorry for that confusing description... and yes I want the class name of the vehicle