!!

Register new account or login on the forum!

To have a full access of the forum please create a new account! Click here or login with your account Click here.

collapse

Support us!

Support membergroup

* User Info

 
 
Welcome, Guest. Please login or register.
Did you miss your activation email?

* Who's Online

  • Dot Guests: 273
  • Dot Spiders: 0
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

Author Topic: Report a bug or request features  (Read 43178 times)

0 Members and 1 Guest are viewing this topic.

Offline ~Sens

  • *
  • Posts: 3
  • Karma: +0/-0
  • Gender: Male
  • Lineage II Avengers
Re: Report a bug or request features
« Reply #15 on: February 18, 2017, 12:39:52 PM »
top pvp/pk manager not work :D
http://prntscr.com/e9vdwt

are you serious ? xaxaxa
that is custom feature who add you  ...
here you post only bugs who find in the pack ...
« Last Edit: February 18, 2017, 12:42:42 PM by ~Sens »

Offline valentin

  • *
  • Posts: 42
  • Karma: +0/-0
  • Gender: Male
    • https://www.youtube.com/watch?v=MY4YJxn-9Og
Re: Report a bug or request features
« Reply #16 on: February 18, 2017, 01:42:51 PM »
to many disconect
« Last Edit: February 18, 2017, 10:30:15 PM by valentin »
smile tomorrow will be a better day

Offline Mordor

  • *
  • Posts: 12
  • Karma: +0/-0
  • Gender: Male
Re: Report a bug or request features
« Reply #17 on: February 19, 2017, 02:59:11 AM »
Hi people  :D L2jFrozen need rework Clan Hall Siege (Fortress Of Dead, Wild Beas Farn and so on).

Offline Nefer

  • *
  • Posts: 276
  • Karma: +0/-0
  • Gender: Male
  • Electric & Electronic engineer
    • Interlude c6 project
Re: Report a bug or request features
« Reply #18 on: February 20, 2017, 11:22:33 PM »
Code: [Select]
- Implement a server uptime stats
- Fix UseItemFloodProtector
- Refactor Server Status task
- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
- L2TradeList 363 itemId  1856 has an ADENA
- Implement a Bug report system
- Remove all sql/data custom un-used
- Create for every custom npc an HOWTO and separate them from the pack

Please continue to log on the test server and give us reports!


Test server online from 5 days without restart.

Offline valentin

  • *
  • Posts: 42
  • Karma: +0/-0
  • Gender: Male
    • https://www.youtube.com/watch?v=MY4YJxn-9Og
Re: Report a bug or request features
« Reply #19 on: February 21, 2017, 02:07:31 PM »
good  joob
smile tomorrow will be a better day

Offline vangog

  • *
  • Posts: 6
  • Karma: +0/-0
Re: Report a bug or request features
« Reply #20 on: February 22, 2017, 04:11:39 AM »
If summon target self and use skills type target aura, summon hit self...

Check target ?


Code: [Select]
L2Object target = getTarget();

switch (skill.getTargetType())
{
// OWNER_PET should be cast even if no target has been found
case TARGET_OWNER_PET:
target = getOwner();
break;
// PARTY, SELF should be cast even if no target has been found
case TARGET_PARTY:
//FIX TARGET AURA
case TARGET_AURA:


if (target != _owner.getPet())
{}
else
{
getOwner().sendPacket(new SystemMessage(SystemMessageId.TARGET_IS_INCORRECT));
return;
}
//end

case TARGET_SELF:
target = this;
break;
default:
// Get the first target of the list
target = skill.getFirstOfTargetList(this);
break;
}

// Check the validity of the target
if (target == null)
{
if (getOwner() != null)
{
getOwner().sendPacket(new SystemMessage(SystemMessageId.TARGET_CANT_FOUND));
}
return;
}


If you change this way, there is no problem, unsure of what it is right ...

Offline lord0flight

  • *
  • Posts: 10
  • Karma: +0/-0
Re: Report a bug or request features
« Reply #21 on: February 22, 2017, 09:59:45 AM »
Day of Doom doesnt work

Offline pedra

  • *
  • Posts: 15
  • Karma: +0/-0
Re: Report a bug or request features
« Reply #22 on: February 23, 2017, 05:33:50 PM »
Nefer, check Humans, Dark Elfs, Elfs summoner summons skills reuse, because they don't have it now. For example, with elf summon i can use my pet skills without reuse N time. (stun and etc)

Index: head-src/com/l2jfrozen/gameserver/model/L2Summon.java
===================================================================
@@ -661,7 +661,7 @@
       //************************************* Check skill availability *******************************************
 
       // Check if this skill is enabled (ex : reuse time)
-      if(isSkillDisabled(skill.getId()) && getOwner() != null && getOwner().getAccessLevel().allowPeaceAttack())
+      if(isSkillDisabled(skill.getId()))
       {
          SystemMessage sm = new SystemMessage(SystemMessageId.SKILL_NOT_AVAILABLE);
          sm.addString(skill.getName());

Offline Mordor

  • *
  • Posts: 12
  • Karma: +0/-0
  • Gender: Male
Re: Report a bug or request features
« Reply #23 on: February 23, 2017, 07:10:26 PM »
Nefer, check Humans, Dark Elfs, Elfs summoner summons skills reuse, because they don't have it now. For example, with elf summon i can use my pet skills without reuse N time. (stun and etc)

Index: head-src/com/l2jfrozen/gameserver/model/L2Summon.java
===================================================================
@@ -661,7 +661,7 @@
       //************************************* Check skill availability *******************************************
 
       // Check if this skill is enabled (ex : reuse time)
-      if(isSkillDisabled(skill.getId()) && getOwner() != null && getOwner().getAccessLevel().allowPeaceAttack())
+      if(isSkillDisabled(skill.getId()))
       {
          SystemMessage sm = new SystemMessage(SystemMessageId.SKILL_NOT_AVAILABLE);
          sm.addString(skill.getName());

Maybe don't work because The method isSkillDisabled is not applicable for the arguments (int).... test this:

+ if (isSkillDisabled(skill) && getOwner() != null)

Offline Kuzuv

  • *
  • Posts: 62
  • Karma: +0/-0
  • Gender: Male
Re: Report a bug or request features
« Reply #24 on: February 23, 2017, 07:13:18 PM »
Nefer, check Humans, Dark Elfs, Elfs summoner summons skills reuse, because they don't have it now. For example, with elf summon i can use my pet skills without reuse N time. (stun and etc)

Index: head-src/com/l2jfrozen/gameserver/model/L2Summon.java
===================================================================
@@ -661,7 +661,7 @@
       //************************************* Check skill availability *******************************************
 
       // Check if this skill is enabled (ex : reuse time)
-      if(isSkillDisabled(skill.getId()) && getOwner() != null && getOwner().getAccessLevel().allowPeaceAttack())
+      if(isSkillDisabled(skill.getId()))
       {
          SystemMessage sm = new SystemMessage(SystemMessageId.SKILL_NOT_AVAILABLE);
          sm.addString(skill.getName());
Wrong


Offline Nefer

  • *
  • Posts: 276
  • Karma: +0/-0
  • Gender: Male
  • Electric & Electronic engineer
    • Interlude c6 project
Re: Report a bug or request features
« Reply #25 on: February 23, 2017, 07:30:46 PM »
 Kuzuv , you can easly test the bug with normal char. This problem will happend only with GM char. Give us feedback.

Offline Kuzuv

  • *
  • Posts: 62
  • Karma: +0/-0
  • Gender: Male
Re: Report a bug or request features
« Reply #26 on: February 23, 2017, 07:37:02 PM »
I know, because i'm and reported it. :D This bug no work only with GM char.

Offline Kuzuv

  • *
  • Posts: 62
  • Karma: +0/-0
  • Gender: Male
Re: Report a bug or request features
« Reply #27 on: February 23, 2017, 10:29:49 PM »
- if(isSkillDisabled(skill.getId()) && getOwner() != null && getOwner().getAccessLevel().allowPeaceAttack())
+ if (isSkillDisabled(skill))

Correct fix  8)

Offline tazerman

  • *
  • Posts: 19
  • Karma: +0/-0
Re: Report a bug or request features
« Reply #28 on: February 24, 2017, 10:33:02 PM »
Working oly if you make subclass with normal class elf is not working

Offline tazerman

  • *
  • Posts: 19
  • Karma: +0/-0
Re: Report a bug or request features
« Reply #29 on: February 24, 2017, 11:46:07 PM »
if(isSkillDisabled(skill.getId()) && getOwner() != null && !getOwner().getAccessLevel().allowPeaceAttack())

better is not GM if you are gm he take !getOwner().getAccessLevel().allowPeaceAttack()

 


* l2jfrozen shoutbox

Refresh History
  • Please don't use the shoutbox for question, create new topic for it!
  • ReDBullz0r: why cant i compile the pack through eclipse? its asking for a username and password
    February 04, 2024, 09:52:17 PM
  • warc222: Shyla Shyla hi why don't you start developing high five classic Interlude there are no such good builds
    January 12, 2024, 08:32:55 PM
  • warc222: lineage 2 classic interlude 110 protocol
    January 05, 2024, 03:27:23 AM
  • warc222: hi shilay, could you use Lineage 2 classic Interlude or another version of the game Lineage 2 essence as a basis?
    January 05, 2024, 03:26:04 AM
  • L2Saturn: Manye 30 years old want get some old times back, we not need kids in L2 :D Interlude BEST
    December 20, 2023, 09:33:56 PM
  • Shyla: Guys, sorry but life requires time I did not know when I started to work on frozen. Linwage had been my passion, but I have not such time to work on again. More, the game itself now is just for who played in the past, is not attractive for new generations, so I dont think it's good decision to restart to work on that
    December 18, 2023, 06:38:36 PM
  • warc222: aunty aunty when will the work be updated??
    December 17, 2023, 01:08:18 PM
  • warc222: oo hi shila, we will be waiting for you near your house with a pitchfork so that you can start doing the project again
    December 17, 2023, 01:07:22 PM
  • Shyla: I know that xD
    November 28, 2023, 01:31:06 PM
  • L2Saturn: is this project die? L2JFrozen reborn please fuck off all other Project Frozen was the best since years!
    November 22, 2023, 04:14:00 PM
  • markus24: sweep festiv
    July 05, 2023, 06:03:49 AM
  • gatos: how to compile
    October 30, 2022, 12:50:22 PM
  • criss282828: A tutorial about how to compile? What Java JDK i need? Still compile with SVN?
    April 25, 2022, 02:18:13 AM
  • Damon: [link] - INTERLUDE server FILES (Pack) Recommend our files and get a REAL MONEY: [link]
    March 16, 2022, 01:08:50 PM
  • Damon: [link] - INTERLUDE server FILES (Pack) Recommend our files and get a REAL MONEY: [link]
    March 16, 2022, 01:08:45 PM
  • Damon: [link] - INTERLUDE server FILES (Pack) Recommend our files and get a REAL MONEY: [link]
    March 16, 2022, 01:08:39 PM
  • pabblo525: donde se descarga el datapack 1.5
    February 13, 2022, 05:04:45 PM
  • Dan: I need an interlude pack with customs (acis is retail with nothing)
    November 13, 2021, 04:46:49 PM
  • Dan: is this project alive or what?
    November 13, 2021, 04:46:23 PM
  • kaisan34: Hola alguien que hable en espaƱol?
    September 25, 2021, 07:56:46 PM