Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

L2J [SHARE]L2J Buff Creator 1.0

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jan 7, 2009
Messages
21
Reaction score
3
I made this tool today and it can help lots of people with creating a NPC Buffer

It works for:
L2J
L2J Free
L2 Emu
L2J Archid

Images:
DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums

DragonHunter - [SHARE]L2J Buff Creator 1.0 - RaGEZONE Forums


Download Link:





GUIDE
This guide is also in the program so you can read it again if your stuck


Ok the first thing you must do is making your buffer go to the Configuration and enable or disable what you want
Secondly go to the Buffs menu and fill in your buffs you want in your npc buffer
Now click at the generate button below the program
Now go to your My Generated Buffer and copy and paste it in notepad save it as: __init__.py
Now go to your HTM Script and copy and paste them both (Read at the HTM Script menu)
And now put them in a folder called: 9999_NPCBUFFER
Now put them in your server folder: data\scripts\custom
Now open the file located in the data folder: scripts.cfg

And add this line: custom/9999_NPCBUFFER/__init__.py

Start your server and spawn the Npc you have as Npc Buffer and your done, You made your own Npc Buffer


Guide by DragonHunter
 
Supreme Arcanarch
Joined
Apr 24, 2006
Messages
906
Reaction score
10
this is good job indeed, but does it work?
spacing is a bit messed up (in the code), you can enter letters instead of numbers and it doesn't give any error, plus the design is a bit crappy (no offense), but this program has a great potential...
you could try to make a function so that you could save space...
here's an example:

Code:
def castBuff(event,id,level) :
  try :
    SkillTable.getInstance().getInfo(int(id),int(level)).getEffects(st.getPlayer(),st.getPlayer())
    st.takeItems(57,ADENA_COUNT)
    st.getPlayer().getStatus().setCurrentHp(st.getPlayer().getStat().getMaxHp())
    st.getPlayer().getStatus().setCurrentMp(st.getPlayer().getStat().getMaxMp())
    st.getPlayer().getStatus().setCurrentCp(st.getPlayer().getStat().getMaxCp())        
  except:
    return "There was an error with the buffer!"
    print "BUFFER DEBUG:  ERROR WITH CASTING BUFF! CHECK EVENT "+str(event)+"!"

this is a very basic function, but with some debug possibilities... see for your self
good luck!
 
Just Ask ME!!!
Joined
Nov 16, 2006
Messages
833
Reaction score
0
man i get error when i execute it: the acplication can't be started (0xc0000135)...

and i really need it please help me...
 
Initiate Mage
Joined
Jun 21, 2009
Messages
1
Reaction score
0
MAN I CAN'T OPEN THIS THEY GIVE ME THIS EROR!!!!!


The application failde to inititalize properly (0xc0000135). click on OK to terminate the application.
 
Status
Not open for further replies.
Back
Top