Jump to content

Recommended Posts

Posted

And again - thanks :) but this buffer is quite outdated. I'm planning to rewrite it completely, so it would be written in pure java, so it's easier to keep it organized, because python is a pain in the ass, when it comes to looking through huge scripts, just like this buffer.

 

Any news here? I really love this buffer and im looking forward to your remake! :D

Posted

it won't be done any time soon... Unfortunately I have messed up my left leg, quite bad actually, so I have to go to some doctors and do rehab, plus I have school, so that makes it quite impossible to finish it all...

Posted

Please , work on gracia epilogue ?

 

 

i use gracia epilogue.it work and verygood npc buffer. but it no kamael buff and you must change "net.sf.l2j" into "com.l2jserver" in file "__init__.py"

  • 3 weeks later...
Posted

i use gracia epilogue.it work and verygood npc buffer. but it no kamael buff and you must change "net.sf.l2j" into "com.l2jserver" in file "__init__.py"

are you sure that it work?

look i change the            "net.sf.l2j" into "com.l2jserver" in file "__init__.py"

but i cant //spawn the npc. do you know how i can find if there is an error.

1. it was an error txt inside the custom npc folder but with ur settings after i restart the server it was fixed.

i did also reload but nothinkg hapen

2. can you tell me if there is an error in execute .sql file how i can fix it ?

[Err] 1136 - Column count doesn't match value count at row 1
[Err] REPLACE INTO `npc` VALUES ('955', '18544', 'Molder', '1', 'Services Manager', '1', 'LineageNpcEV.trap_ironcastle', '8.00', '24.00', '85', 'etc', 'L2Warehouse', '40', '20000', '164', '1.15', '1.21', '40', '1', '30', '21', '20', '25', '0', '0', '40000', '50000', '50000', '50000', '999', '0', '333', '0', '0', '0', '60', '125', 'NULL', '0', '0', '0', 'LAST_HIT', '0', '0', '0', 'balanced', 'false');
[Msg] Finished - Unsuccessfully

Posted

are you sure that it work?

look i change the            "net.sf.l2j" into "com.l2jserver" in file "__init__.py"

but i cant //spawn the npc. do you know how i can find if there is an error.

1. it was an error txt inside the custom npc folder but with ur settings after i restart the server it was fixed.

i did also reload but nothinkg hapen

2. can you tell me if there is an error in execute .sql file how i can fix it ?

 

 

it's works sure ;D but you can't spawn NPC because you have error in execute. you can add NPC manauly.

Posted

it's works sure ;D but you can't spawn NPC because you have error in execute. you can add NPC manauly.

ty man but i use now rinas buffer edited by ALIEN and it work fine.

i dont know how to add it normaly. when i load the ALIENS sql it sayed success and then i saw it too navicat/npc .

so ty all i just have to try to replace the model of the npc( i dont like it very much :P) and i  want adena to be cheaper and i can use it for more time not for 2 sec :). anyway ty.

Posted

You get those SQL errors because Alien made it to be compatible with Epilogue. This works only with Final, so no wonder, that you get SQL errors about incorrect column count.

 

And please write my nickname correctly :)

Posted

You get those SQL errors because Alien made it to be compatible with Epilogue. This works only with Final, so no wonder, that you get SQL errors about incorrect column count.

 

And please write my nickname correctly :)

1 i am so sorry about your nickname  i apologize :(

2 had this errors with every buffer i used . all errors stopped when i work with Alien modified cause i use epilogue server :P

3 if you know anything else buffer/gmshop/teleport ... that it work in epilogue i will be very pleased to tell me

4 i am glad that u respond :D and again sorry for your nickname.

  • 4 weeks later...
  • 3 weeks later...
  • 2 weeks later...
Posted

The reason for this post is to report a problem that can seriously affect the performance of your servers. Some of you maybe have not noticed, ought not to have many people using the buffer at the same time, but in my case 1 week ago, I had two total freezes when the whole server (500-700 players) attempted use the bufer after an event ;D. But I found something, a person is enough to knock over a server, with many people. Looks this code in script both original rin4a's buffer and my version have a problem, but is easy to fix.

 

as you can see in these lines of code, is open a connection to the database but is never closed, every time a user attempted to remove a buff of his scheme, open a new connection that was never closed causing a total server freeze.

 

                          if event == "remove_buff" :
                                      event = eventParam1.split("_")
                                      scheme = event[0]
                                      skill = event[1]
                                      level = event[2]
                                      con=L2DatabaseFactory.getInstance().getConnection()
                                      rem=con.prepareStatement("DELETE FROM buffer_scheme_contents WHERE scheme_id=? AND skill_id=? AND skill_level=? LIMIT 1")
                                      rem.setString(1, scheme)
                                      rem.setString(2, skill)
                                      rem.setString(3, level)
                                      try : rem.executeUpdate()
                                      except : pass

 

to fix the problem only adds to what I show below  :). thats all!

 

                          if event == "remove_buff" :
                                      event = eventParam1.split("_")
                                      scheme = event[0]
                                      skill = event[1]
                                      level = event[2]
                                      con=L2DatabaseFactory.getInstance().getConnection()
                                      rem=con.prepareStatement("DELETE FROM buffer_scheme_contents WHERE scheme_id=? AND skill_id=? AND skill_level=? LIMIT 1")
                                      rem.setString(1, scheme)
                                      rem.setString(2, skill)
                                      rem.setString(3, level)
                                      try :
                                                   rem.executeUpdate()
                                                   rem.close()         # <------------ADD----------
                                                   con.close()         # <------------ADD----------
                                      except : pass

 

After this modification, the performance of my server increase substantially (not more freezing, less lagg).

 

PD: I would recommend that only allow certain people to use the buffer for servers with more than 100 users (Use the VIP Option, i used and everything is fine).

Posted

Thanks for the share, awesome work.

This is one of the best buffers out there made even better!

 

EDIT: Took a look through the second one...it seems you added more buffs and features to the player but took out a lot more for the GMs. Almost like sacrificing GM control for more buffs...seems silly to me but yeah...Will take me much work to keep the features of both buffers in tact and convert it to something more usable. But its still an awesome buffer, and nice share. ^_^

Posted

hi everyone,

 

first, thanks to Rin4a for his awesome buffer and thanks to Allen for adapted it for epilogue =)

 

But i've got a problem with the last revision of L2J epilogue, (DP:7448 and GS:4237) when i spawn the npc IG and talk to it i've got this error

 

screenshot061.png

 

I've already insert the line custom/555_NPCbuffer/__init__.py in the scripts.cfg and add the folder 555_NPCbuffer in data/script/custom/

 

Anyone had already get this error ?

 

Thx by advance =)

 

Mitsu

Guest
This topic is now closed to further replies.



  • Posts

    • 🔥 Launch was a success! Over 500 players joined L2Elixir on opening day, and we are holding a steady 420–450 online! We faced extortion attempts and heavy DDoS attacks, but our protections held strong — even if the cost was far higher than expected. What matters is we fought back and kept the server online for you. ⚔️ 💙 Our priority is simple: Deliver a stable, fair, and growing server that will evolve for years to come. We continue to invest in protections, advertising, and development — and we won’t stop. All we ask from YOU is one thing: 👉 Keep playing. The more active the community is, the faster the server grows. 💠 Important Note: We have no paid clans or CPs, no “boosted” groups, no unfair benefits. Everyone has an equal chance to progress and compete. Thank you to everyone who joined, supported, and believed in this project. Let’s make L2Elixir great again — even in 2025–2026! 🚀   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs
    • https://jumpshare.com/share/kIdeKALOhgtMKpBKqxpg Test Equip Armors-> FullPlate, Gloves, Legs, Chest , Boots
    • 黑色星期五 — 为您的流量提供高级福利 仅在11月28日,我们的特别促销码可为您提供13%的商店折扣。 促销码: BLACKFRIDAY (13% 折扣) 您可以通过我们的网站或 Telegram 机器人在商店购物! 有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram Messenger 方便访问商店。 其他服务: 虚拟号码服务: 前往 用于购买 Telegram Stars 的机器人: 前往 – 快速且优惠地在 Telegram 中购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们向您呈现当前的 促销和特惠活动 列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣 — 只需在我们网站注册后发送您的用户名,格式如下:“SEND ME BONUS, MY USERNAME IS...” — 您需要在我们的论坛帖子中写下这句话! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(支持)提交主题为“Get Trial Bonus”的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人每周都会举办 Telegram Stars 抽奖活动! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Usually, I work alone on my projects, but sometimes the work is much more than I've expected. Could you provide a price list? It would be good if we knew your price before contacting you. 
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock