Jump to content
  • 0

[Help] NPC_Buffer


Question

Posted

Hi all!!!...

pls can some1 help me with my NPCbuffer? I download from here some NPC buffer ... I //spawn it ... and when i klick to the buff me it write me it wasn't modifet of something like that :) ... How i must add the quest?

 

Screen:

shot00004lv2.th.jpg

 

shot00005mt0.th.jpg

 

[move][glow=blue,2,300]thx^^[/glow][/move]

10 answers to this question

Recommended Posts

  • 0
Posted

Open: E:\L2GreekGodz\gameserver\data\jscript/__int__

 

And be sure that you have these:

 

__all__ = [

'quests',

'custom',

'teleports',

'village_master',

'ai'

]

import quests

import custom

import teleports

import village_master

import ai

 

  • 0
Posted

Open: E:\L2GreekGodz\gameserver\data\jscript/__int__

 

And be sure that you have these:

 

__all__ = [

'quests',

'custom',

'teleports',

'village_master',

'ai'

]

import quests

import custom

import teleports

import village_master

import ai

 

I have l2j Oneo

 

I have written there this:

 

__all__ = [

'quests',

'custom',

'teleports',

'village_master',

'ai'

]

import quests

import custom

import teleports

import village_master

import ai

 

that's the problem?

  • 0
Posted

Open up Your Buffers quest int.py file

Search for Level or Check When you find it it will look like Check Level>40 or something

Change the "40" to a higher #

THis should work

  • 0
Posted

Open up Your Buffers quest int.py file

Search for Level or Check When you find it it will look like Check Level>40 or something

Change the "40" to a higher #

THis should work

why higher? I try do it lower and nothing change :(

  • 0
Posted

Well If You Use Interlude , The Problem Is Not With The Level's Or Something.

 

go to

 

GameServer / Data / JScript / Custom /

 

Find + Open With Notepad The File _init_.py

 

Delete All Its Contain And Paste This :

 

 


__all__ = [
'708_ZakenCurse',
'3995_echo',
'4000_ShadowWeapons',
'6050_KetraOrcSupport',
'6051_VarkaSilenosSupport',
'7000_HeroItems',
'8000_RaidbossInfo',
'9999_NPCBuffer'

]
print ""
print "importing custom data ..."
for name in __all__ :
    try :
        __import__('data.jscript.custom.'+name,globals(), locals(), ['__init__'], -1)
    except:
        print "failed to import quest : ",name
print "... done"
print ""

 

Save It.

Restart Your Server And Ta Daaaaa Its Ok ;)

 

  • 0
Posted

Well If You Use Interlude , The Problem Is Not With The Level's Or Something.

 

go to

 

GameServer / Data / JScript / Custom /

 

Find + Open With Notepad The File _init_.py

 

Delete All Its Contain And Paste This :

 

 


__all__ = [
'708_ZakenCurse',
'3995_echo',
'4000_ShadowWeapons',
'6050_KetraOrcSupport',
'6051_VarkaSilenosSupport',
'7000_HeroItems',
'8000_RaidbossInfo',
'9999_NPCBuffer'

]
print ""
print "importing custom data ..."
for name in __all__ :
    try :
        __import__('data.jscript.custom.'+name,globals(), locals(), ['__init__'], -1)
    except:
        print "failed to import quest : ",name
print "... done"
print ""

 

Save It.

Restart Your Server And Ta Daaaaa Its Ok ;)

 

 

thx for your aswer mby that's the problem but i have some custom buffer from here ...

 

9997_Custom Buffer or something like that ...

can u share here for me some 9999_NPC Buffer ? :) mby it will be better...

 

Big Thx^^

  • 0
Posted

Look. If im not mistaken this buffer is Oneo Dev Team Ones.

 

It Is With JSCript. So Look What You Will Have To Do.

 

go to the buffers folder and take the folder with the name 9999_NPCBuffer

 

and place it into gameserver/data/jscript/custom

 

delete the 9997_CustomBuffer or sth

 

rr the srvr and you are ok.

  • 0
Posted

kalimera boy thelw ena buffer sql gia j pack na to peraso sto server m :D

 

 

«  on: August 08, 2008, 10:21:26 AM »

 

Topic date + Here is english section!.

 

Read your forum rules...

 

~Locked

 

p.s: Next time i'll dekrma you be carefull... if you want something go in greek helping section and make a new topic ;]

Guest
This topic is now closed to further replies.


  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..