Jump to content
  • 0

Question

10 answers to this question

Recommended Posts

  • 0
Posted
Just now, sader1992 said:

change this


setarray .Req_Third[0],99,50;

to


setarray .Req_Third[0],99,51;

or more then 51

did not work, I just want to force the players to be reborn, if I change that line there the player can not pass to 3rd in any way.

  • 0
Posted

under this

	if( Is_Baby() && (!.BabyClass || !.BabyThird) )
		return false; // No Baby (Third) change allowed

add this

	if( !(eaclass()&EAJL_UPPER) )
		return false;

 

  • Upvote 1
  • 0
Posted
12 hours ago, sader1992 said:

under this


	if( Is_Baby() && (!.BabyClass || !.BabyThird) )
		return false; // No Baby (Third) change allowed

add this


	if( !(eaclass()&EAJL_UPPER) )
		return false;

 

apparently it worked, I'm going to do some tests, thank you very much!

  • 0
Posted
1 hour ago, sader1992 said:

@Kakaroto

change the line to be like this (add "&& !Is_Baby()")


if( !(eaclass()&EAJL_UPPER) && !Is_Baby() )
		return false;

 

Just if(!Upper) is enough for this.

 

  • 0
Posted (edited)
7 hours ago, Kakaroto said:

https://img.buzzfeed.com/buzzfeed-static/static/2016-01/4/12/enhanced/webdr11/enhanced-18771-1451928633-6.jpg?downsize=715:*&output-format=auto&output-quality=auto

Where?

 

like this?


&EAJL_UPPER

to:


!&EAJL_UPPER

 

no you can't !&

he mean just replace 

if( !(eaclass()&EAJL_UPPER) && !Is_Baby() )

with

if(!Upper)

it would be the same result but more optimized

 

 

Edited by sader1992
  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...