Jump to content
  • 0

chi

Question

 I've been trying to figure this out for 2 days.

I have the zupa single currency and have the "check Wallet" function added to selfactions. I also have a dead player journal that can be checked. The problem is that the dead player journal also shows up on dead zombies and AI

  Reveal hidden contents

.

Could you help me out with this and maybe explain how whatever you do works, just so i can maybe learn a little something from this experience?

 

P.S. I have the check wallet function showing up on AI, Zombies, and players, and i want to keep it that way. Doesn't really matter if the journal stays on AI either, i just really dont want it on the zombies. If i could remove it from the AI, that would be great. DZAI and WAI

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

see.. here youre defined studybody as true:

  Reveal hidden contents

thats means... if is player  and is zombie.. and is NOT animal... then player studybody is true...  here is ure issue as @Tech_Support say you...

must be If is player and is NOT zombie and is NOT animall then,,,

so

  Reveal hidden contents

 

but also close studybody before studybody_2

 

  Reveal hidden contents

also you need add

player removeAction s_player_studybody_2;
s_player_studybody_2 = -1;

 

bellow:

player removeAction s_player_fillfuel;
    s_player_fillfuel = -1;
    player removeAction s_player_studybody;
    s_player_studybody = -1;

Link to comment
Share on other sites

  • 0

Thats how i had the study body before. 

 

The thing is, it's like i need to define 2 different study body functions or something.

1- I want check wallet to show up on players & zombies, so _isman || _iszombie is what i need for that part.

2- I want deadbodyjournal to ONLY show on players. not zombies, but at the same time i need check wallet to show for zombies and players.

 

Anyway to do that?

 

Thanks for the replies guys!

 

Link to comment
Share on other sites

  • 0
  On 7/17/2016 at 6:22 PM, chi said:

Thats how i had the study body before. 

 

The thing is, it's like i need to define 2 different study body functions or something.

1- I want check wallet to show up on players & zombies, so _isman || _iszombie is what i need for that part.

2- I want deadbodyjournal to ONLY show on players. not zombies, but at the same time i need check wallet to show for zombies and players.

 

Anyway to do that?

 

Thanks for the replies guys!

 

Expand  

try it: remove all about study_body2

find in your selfactions:

 // Study body

add Bellow :

  Reveal hidden contents

and add:

player removeAction s_player_studybody_2;
s_player_studybody_2 = -1;

 

bellow:

player removeAction s_player_fillfuel;
    s_player_fillfuel = -1;
    player removeAction s_player_studybody;
    s_player_studybody = -1;

*So its looks:

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 0
  On 7/17/2016 at 7:54 PM, juandayz said:

try it: remove all about study_body2

find in your selfactions:

 // Study body

add Bellow :

  Reveal hidden contents

and add:

player removeAction s_player_studybody_2;
s_player_studybody_2 = -1;

 

bellow:

player removeAction s_player_fillfuel;
    s_player_fillfuel = -1;
    player removeAction s_player_studybody;
    s_player_studybody = -1;

*So its looks:

  Reveal hidden contents

 

Expand  

Works perfect. I was over thinking it.

 

Thanks a lot juandayz!!!!!!!!

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...