Hi. im very new to this and i need some help if possible. So i installed single currency on my vanilla server, everthing seems to be working fine with that.
The thing is when i tried to instal Krixes' self bloodbag script it just doesn't work for some reason i spawn in debug.
i used this guide
Installation Instructions For existing custom dayz_mission.pbo and fn_selfActions.sqf: Open your dayz_mission.pbo
Create a new folder called Scripts in your dayz_mission.pbo and add my player_selfBloodbag.sqf to the custom folder you just created!
open your fn_selfActions.sqf in YOUR dayz_mission.pbo and add this in....
Question
sunnypt
Hi. im very new to this and i need some help if possible. So i installed single currency on my vanilla server, everthing seems to be working fine with that.
The thing is when i tried to instal Krixes' self bloodbag script it just doesn't work for some reason i spawn in debug.
i used this guide
Installation Instructions For existing custom dayz_mission.pbo and fn_selfActions.sqf:
Open your dayz_mission.pbo
Create a new folder called Scripts in your dayz_mission.pbo and add my player_selfBloodbag.sqf to the custom folder you just created!
open your fn_selfActions.sqf in YOUR dayz_mission.pbo and add this in....
_mags = magazines player;
// Krixes Self Bloodbag
if ("ItemBloodbag" in _mags) then {
hasBagItem = true;
} else { hasBagItem = false;};
if((speed player <= 1) && hasBagItem && _canDo) then {
if (s_player_selfBloodbag < 0) then {
s_player_selfBloodbag = player addaction[("<t color="#c70000"">" + ("Self Bloodbag") +"</t>"),"Scripts\player_selfbloodbag.sqf","",5,false,true,"", "];
};
} else {
player removeAction s_player_selfBloodbag;
s_player_selfBloodbag = -1;
};
// ---------------------------------------Krixes Self Bloodbag End------------------------------------
just after this part...........
did everything like it says there and i spawn in debug for some reason. can someone help me with this?
EDIT: Fixed it, note to self, always edit sqf files with notepad++ :D please close this post :)
Link to comment
Share on other sites
15 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now