Jump to content
  • 0

WTF is going on


Question

Posted

i added dont loose your buffs on death code

 

// Same thing if the Character isn't a Noblesse Blessed L2PlayableInstance
        else if (this instanceof L2Playable && ((L2Playable)this).isNoblesseBlessed())
        { 
			((L2Playable)this).stopNoblesseBlessing(null); 

        	if (((L2Playable)this).getCharmOfLuck()) //remove Lucky Charm if player have Nobless blessing buff 
				((L2Playable)this).stopCharmOfLuck(null); 
		} 
		else

 

and i got this error

 


[javac] Compiling 1298 source files to C:\L2GateAway\L2JGateway\L2J_CORE\build\classes
    [javac] C:\L2GateAway\L2JGateway\L2J_CORE\java\com\it\br\gameserver\model\L2Character.java:1513: 'else' without 'if'
    [javac] 		else if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed()) 
    [javac] 		^
    [javac] 1 error

Recommended Posts

  • 0
Posted

everyone sucks at java here...

 

basics of if/else if/else statements read google...NOBODY NEVER put else if 1st else stands ONLY AFTER an if statement ONLY when you need to make more than 2 check hence

 

if{

blabla

{

else{

blabla

}

 

or

 

if{

blabla

{

else if{

blabla

}

else{

blabla

}

  • 0
Posted

ok can y fix the bad coded code and share it with us cause i am sooo confused

 

it is after death dont remove bufs

  • 0
Posted

everyone sucks at java here...

 

basics of if/else if/else statements read google...NOBODY NEVER put else if 1st else stands ONLY AFTER an if statement ONLY when you need to make more than 2 check hence

 

could you tell me when i tryed to write smth like that? because i dont have any problem when i compile it (didnt tested it ingame)

  • 0
Posted

could you tell me when i tryed to write smth like that? because i dont have any problem when i compile it (didnt tested it ingame)

 

nobody know the sun java tutorial in this fucking forum....?

 

http://download-llnw.oracle.com/javase/tutorial/java/nutsandbolts/if.html

  • 0
Posted

Come on , there are too many guides out got and watch / read.Search on youtube thenewboston he has many guides for java.Find if statements and done!

  • 0
Posted

more easy way is to go l2character.java and change this

 

stopAllEffects();

 

to this

 

//stopAllEffects();

thanks working ^^

  • 0
Posted

Guys i am -beep-ed up here is the retail code:

 

// Same thing if the Character isn't a Noblesse Blessed L2PlayableInstance 
        else if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isNoblesseBlessed()) 
        {  
		((L2PlayableInstance)this).stopNoblesseBlessing(null); 
		if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player have Nobless blessing buff 
			((L2PlayableInstance)this).stopCharmOfLuck(null); 
	} 

 

 

Ops soz for 2ble post delete the other aint working

wtf i have to add to keep buffs on death?

  • 0
Posted

can someone give me the full code?

OMG!what full code you want this is not works?

 

more easy way is to go l2character.java and change this

 

stopAllEffects();

 

to this

 

//stopAllEffects();

  • 0
Posted

OMG!what full code you want this is not works?

 

 

omg learn how to reply tell me what is before it in order to add it lawl!!!

  • 0
Posted

yes, yes, plz quote my error in this topic

 

quote your error?

 

here you go Mr.Smartass if you like to fail feel free...

 

if you write an if statement you NEED to start with if simple because of if you start with else you get syntax error or if you start with else if you get syntax error for else reason beeing if-else blocks start with if and if needed end with else if or else simple syntax regarding to the most common thing used in java...

  • 0
Posted

quote your error?

 

here you go Mr.Smartass if you like to fail feel free...

 

if you write an if statement you NEED to start with if simple because of if you start with else you get syntax error or if you start with else if you get syntax error for else reason beeing if-else blocks start with if and if needed end with else if or else simple syntax regarding to the most common thing used in java...

 

interesting, but quote my code where i did

 

else if

else

 

or

 

else

if

 

or smth

Guest
This topic is now closed to further replies.



×
×
  • Create New...