sudslv
Member-
Content Count
71 -
Joined
-
Last visited
-
Medals
Everything posted by sudslv
-
Hi im making a Vehicle flip script which is executed in GUI on button click. I cant figure out how to "locate" nearby vehicles. flip script: // Flip vehicle 0.5m above ground. _veh setpos [getpos _veh select 0, getpos _veh select 1, 0.5];
-
Ejecting a player from a back seat in a car
sudslv replied to MaldorLevr's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
try replacing "crew" with "passenger" -
Only "name" can enter this vehicle
sudslv replied to kocrachon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
use arma 3 forums then. -
First person death
sudslv replied to elektrobanks's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Well, in "domination" map there is this feature: when you die, you will go into spectator mode so you can look into its files and see how they do it. most likely it has something do with event handlers. -
First person death
sudslv replied to elektrobanks's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
something with this. -
Vehicle Repair Point Script by Xeno works intermittently
sudslv replied to Lord_Jereth's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I didn't quite understand what is your problem. So you are trying to make something like "Vehicle service" point? if yes, then its already included in arma 2 editor, in warfare (i think). You can later manipulate it with scripts. -
disable moving individual objects
sudslv replied to Brambo's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
all people need to specify what they are talking about. -
disable moving individual objects
sudslv replied to Brambo's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
sorry but are you talking about "Wasteland" map or what? originally in arma you cant interact with objects unless scripted to. -
people need to learn more about arma 2 scripting before they post questions that require moderate knowledge of .sqf syntax. its very hard to explain something then.
-
Quick question, need help sorting the action menu.
sudslv replied to -TFP- Bridge.J's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Id suggest you to move to GUI, its a very easy to learn and use but its your choice if you prefer Action Menu. -
Issue running .SQF on a unit after respawn
sudslv replied to d00kiejones's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
http://community.bistudio.com/wiki/ArmA_2:_Event_Handlers#MPRespawn i believe this. -
Help with a script that "increases reputation with a certain side".
sudslv replied to jakkob4682's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
i want to make something simmilar as skill system but when player kills other players (all are independent). got any script snippet to help me out? and isnt "IND"(Independent) a Faction and "GUE"(Guerillas) SubFaction? -
Different Recruitment centers with differents unitis.
sudslv replied to KlapauciusIV's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
..... -
Problem with arma 2 Island Life Bank Problem
sudslv replied to pcking's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
So we are supposed to just imagine out your script and then fix it? and you should post this into island life forums. -
Help with a script that "increases reputation with a certain side".
sudslv replied to jakkob4682's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I want to make something similar to this, so if you come up with anything please share :) -
Deactivating a Tanks ability to shoot, then activating it again with a trigger
sudslv replied to DNP's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
behavior as careless would be better as if they encounter enemy without ammo, they will either try to "surrender" or drive somewere far away. shorter aswell: tank1 setBehaviour "CARELESS"; -
SHK_startingPositionRandomizer
sudslv replied to shuko's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
what is the difference between this long script and this easy version? to make it spawn randomly in some area just increase radius of marker. -
Making M88A2 a repair vehicle?
sudslv replied to armyinf's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
can you post the link to .pbo file? i want to take a look. -
[Release] Arma2 SQL-Life 0.1
sudslv replied to infection's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
will test asap -
Temporary Invincibility on Respawn (Spawn Protection)
sudslv replied to B-Man's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
launch this script file trough init.sqf -
Adding Handcuffs to Inventory/Spawn Hostages wearing handcuffs
sudslv replied to RyanDMC's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
it is complicated .SQF script/scripts and you should learn .SQF syntax and then ask this this again. -
Hi i want to create a player model choosing system wich is activated by GUI OnButtonClick. i know how to create basic GUI but i dont quite understand how to make the CreateUnit works. i want to make that script will create unit for example "Soldier_Medic_PMC" somewere (not important where), SelectPlayer the newly created unit and delete the old player unit and this needs to work in multiplayer and very important is that this model will stay with player after respawns. As well the player could access the GUI to later change the model again. Yet i tried it using addaction: _caller = this select 1; _id = this select 2; _unitt = createUnit ["TK_Aziz_EP1", getPos _caller]; _caller SelectPlayer _unitt _caller removeaction _id; but it doesnt work. any help would be appreciated. ---------- Post added at 19:12 ---------- Previous post was at 19:10 ---------- I want to make this because for example "Soldier_Medic_PMC" has the ability to heal wounded players.
-
Flip nearby vehicle.
sudslv replied to sudslv's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Tested -> works thanks again. -
Faction specific text?
sudslv replied to Fa11en's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
show script. -
The Structure of an Arma Server
sudslv replied to Desolate's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
well im not sure how your stat save works? it is some sqf script that saves all user data or it is a mySQL database? (im not that good when it comes to mySQL).