Jump to content
  • 0

[HELP]How to make every new player hero?


WizZy™

Question

11 answers to this question

Recommended Posts

  • 0

well , just a thought..

 

go to charactercreate.java

 

and where newChar.setTitle("");

 

put under it

 

newChar.setHero();

 

( or sth similar. i dont have eclipse on my pc. - just formatted. )

Link to comment
Share on other sites

  • 0

Read this:

http://www.maxcheaters.com/forum/index.php?topic=21169.0

 

I think it's the same on Gracia 2.

 

It says automaticly -_-

 

Stef i`ll try right away :) Thanks dude! I`ll post results in some mins..

Link to comment
Share on other sites

  • 0

well , maybe u should create the method into the newChar variable. i mean , on activeChar / Player works fine..

 

 

Link to comment
Share on other sites

  • 0

as i see on my eclipse.

 

if under this newChar.setTitle("");

 

u put

 

newChar.setHero(true);

 

it has no errors at all. try it. compile the pack , create a char and tell me

Link to comment
Share on other sites

  • 0

Bad idea. Always put a check first if(!activeChar.isHero()) ,use it if you are modding Enterworld and not the CharacterCreate. You should always assume things can have two sides ^^

Link to comment
Share on other sites

  • 0

Okay i made some modifications like Horus told me on the post below , in EnterWorld.java

So what i did?

I removed this :

// Set Hero status if it applies
	if (Hero.getInstance().getHeroes() != null && Hero.getInstance().getHeroes().containsKey(activeChar.getObjectId()))
		activeChar.setHero(true);

And write this :

		//Custom hero Method 
	if(!activeChar.isHero())
		activeChar.setHero(true);

Hope it works;/ I`ll edit my post if it doesn't.

 

EDIT : It worked ,please close :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...