Jump to content
Sign in to follow this  
eazye

Any revive scripts specifically for single player?

Recommended Posts

I have used A3 wounding system in a mission I did last year and it worked fine with AI healing the player but for a new mission I am creating its not working anymore and I have no idea why. I am getting an error when I start the mission. In case that is a lost cause can anyone tell me a working script that has AI healing the player. I tried grimes revive which I think works good but as far as I know the AI doesn't heal you.

Share this post


Link to post
Share on other sites

Yes sometimes for reasons unknown,certain revive scripts dont wanna work for some,but will for others.

I tried BTC Quick revive and can recommend you give it a try.It does not work for me for some reason,i cant narrow down why.(lightweight script)

2.I'd also recommend Farooqs revive(even more lightwieght but AI wont revive player)

3.Norrins revive ported from Arma2-This script is brilliant,has so many functions INCLUDING respawn mobile point you can deploy while in mission,and a good config.Downside is that its not maintained anymore,and any damage multiplier mods/scripts running will cause it to not function correctly.(NOT SO LIGHTWEIGHT)

AIS as you said dosent work,iv reverted to for now since BTC wont work for me,even in the demo mission.Can you tell me what error you get with AIS?

Share this post


Link to post
Share on other sites
Yes sometimes for reasons unknown,certain revive scripts dont wanna work for some,but will for others.

I tried BTC Quick revive and can recommend you give it a try.It does not work for me for some reason,i cant narrow down why.(lightweight script)

2.I'd also recommend Farooqs revive(even more lightwieght but AI wont revive player)

3.Norrins revive ported from Arma2-This script is brilliant,has so many functions INCLUDING respawn mobile point you can deploy while in mission,and a good config.Downside is that its not maintained anymore,and any damage multiplier mods/scripts running will cause it to not function correctly.(NOT SO LIGHTWEIGHT)

AIS as you said dosent work,iv reverted to for now since BTC wont work for me,even in the demo mission.Can you tell me what error you get with AIS?

Thanks for the reply. Here is the error message:

'...}];

};

If (_unit == player) then {call |#|tcb_fnc_diary};

_timeend = time + 2;

wa...'

Error Undefined variable in expression: tcb_fnc_diary

I am not advanced enough into scripting to even know what this means or know where to look but I pretty much just copied the files over from the last mission. The only change is that I used it along side VAS last time but now I am using Asor gear selector and just switched them out in the description.ext.

Share this post


Link to post
Share on other sites

EazyE,

It looks like you haven't declared your function in the description.ext.

My knowledge of scripting also doens't go that far, so i can't help you any further

Gr,

StayFrosty24

Share this post


Link to post
Share on other sites
EazyE,

It looks like you haven't declared your function in the description.ext.

My knowledge of scripting also doens't go that far, so i can't help you any further

Gr,

StayFrosty24

Well this is what I have, can anyone locate the problem?

class RscTitles {

#include "ais_injury\dialogs\rscTitlesAIS.hpp"

};

#include "ASORGS\menu.hpp"

class CfgFunctions {

#include "ASORGS\cfgfunctions.hpp"

#include "ais_injury\cfgFunctionsAIS.hpp"

};

Share this post


Link to post
Share on other sites
Well this is what I have, can anyone locate the problem?

class RscTitles {

#include "ais_injury\dialogs\rscTitlesAIS.hpp"

};

#include "ASORGS\menu.hpp"

class CfgFunctions {

#include "ASORGS\cfgfunctions.hpp"

#include "ais_injury\cfgFunctionsAIS.hpp"

};

Try this in this order in des ext:

//--------------------------------------------------------------

//------------------------AIS INJURY----------------------------

//--------------------------------------------------------------

class RscTitles {

#include "ais_injury\dialogs\rscTitlesAIS.hpp"

};

class CfgFunctions {

#include "ais_injury\cfgFunctionsAIS.hpp"

};

Whats ASORGS\menu.hpp?

Share this post


Link to post
Share on other sites
Try this in this order in des ext:

//--------------------------------------------------------------

//------------------------AIS INJURY----------------------------

//--------------------------------------------------------------

class RscTitles {

#include "ais_injury\dialogs\rscTitlesAIS.hpp"

};

class CfgFunctions {

#include "ais_injury\cfgFunctionsAIS.hpp"

};

Whats ASORGS\menu.hpp?

I still get the same error with that. Also I tried the quick revive but can't get that to work.

Share this post


Link to post
Share on other sites

What other scripts are you running because tcb seems to be a function tag for something other than formentioned revive scripts.

Share this post


Link to post
Share on other sites
What other scripts are you running because tcb seems to be a function tag for something other than formentioned revive scripts.

I am only using Asorgs and Usps patrol script, those two work together fine

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×