Jump to content
  • 0

Can't gut animal (No text displaying error)


JakeQue

Question

17 answers to this question

Recommended Posts

  • 1

Hi Jake and welcome back,

activate the client rpt logging in your game. Start Arma2 OA with -showScriptErrors This will show you the errors on the client side and is a huge help if you have problems with the fn_selfactions. You can find the client rpt under that path:

C:\Users\YourUsername\AppData\Local\ArmA 2 OA

Upload it at pastebin and show us the result.

Yes, take clothes, bury body and deploy anything are all different scripts. @salival has reworked all of them.

You can find that on github: https://github.com/oiad

Link to comment
Share on other sites

  • 1

@JakeQue You can ignore the Warning Message: No entry 'bin\config.bin/CfgMagazines.45Rnd_545x39_RPK'.  for now. It will be fixed in the next epoch patch.

For the other error, make sure you have in your configVariables.sqf DZE_ZombieSpeed = [0,0]; or a value you like. It was changed from boolean to array if I remember correctly.

https://github.com/EpochModTeam/DayZ-Epoch/blob/master/SQF/dayz_code/configVariables.sqf#L35

Link to comment
Share on other sites

  • 1

But for showing that in the rpt you may have it somewhere in your files, so look in ur traders, wai crates or any other mission system u use and remove the ammo '45Rnd_545x39_RPK' . It will show the error when u join but it will be fixed in later updates

Link to comment
Share on other sites

  • 0

I've found out that it's any action when a player is too close, it's not displaying any text to inform us of it.

 

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 0

This is the default fn_selfactions.sqf file plus the bury-gut code added

  Reveal hidden contents

Now i see that you have a ton of custom addons there, i suggest u add one by one and testing the code. Good luck

Link to comment
Share on other sites

  • 0

bury actions script. Follow the code in selfactions to see where to put it

  Reveal hidden contents

This script is salivals btw so maybe check his github if there are any updates

Link to comment
Share on other sites

  • 0

Hello A Man, thank you and good to be back! My Rpt 's entirety is of the same following errors...

 

  Reveal hidden contents

 

I have no idea how to fix this! 

I have replaced Bury body, right clicks and deploy anything. 

Many thanks :)

Link to comment
Share on other sites

  • 0
  On 5/8/2018 at 2:45 PM, A Man said:

@JakeQue You can ignore the Warning Message: No entry 'bin\config.bin/CfgMagazines.45Rnd_545x39_RPK'.  for now. It will be fixed in the next epoch patch.

For the other error, make sure you have in your configVariables.sqf DZE_ZombieSpeed = [0,0]; or a value you like. It was changed from boolean to array if I remember correctly.

https://github.com/EpochModTeam/DayZ-Epoch/blob/master/SQF/dayz_code/configVariables.sqf#L35

Expand  

I'll give this a whirl. Many Thanks man!

 

You wouldn't have any idea how to remove the scroll action "Take Clothes" from animals would you please?

Life saver, cheers.

Edited by JakeQue
THIS IS TRIED AND TESTED AND WORKS :)
Link to comment
Share on other sites

  • 0
  On 5/8/2018 at 2:49 PM, totis said:

But for showing that in the rpt you may have it somewhere in your files, so look in ur traders, wai crates or any other mission system u use and remove the ammo '45Rnd_545x39_RPK' . It will show the error when u join but it will be fixed in later updates

Expand  

Cheers bro, i'll take a look at this too!

Link to comment
Share on other sites

  • 0

@JakeQue To remove the Take Clothes action from animals you have to add 

{!(_cursorTarget isKindOf "Animal")}

in the fn_selfactions right before or after

 {!(_cursorTarget isKindOf "zZombie_base")} 

https://github.com/oiad/TakeClothes/blob/master/dayz_code/compile/fn_selfActions.sqf#L807

@salival Did you miss the animal checked or do I miss something here?

Link to comment
Share on other sites

  • 0

I've corrected it using your strategy just changed it slightly.

 

In fn_Selfactions.sqf

Find this line: 

_isZombie = _cursorTarget isKindOf "zZombie_base";

Add below:

_isAnimal = _cursorTarget isKindOf "Animal";

 

 

 

Find this line:

if (_isMan and !_isAlive and !_isZombie and !_clothesTaken) then {

Change to :
 

if (_isMan and !_isAlive and !_isAnimal and !_isZombie and !_clothesTaken) then {

 

Thanks @A Man

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Discord

×
×
  • Create New...