Jump to content

Question

Posted (edited)

http://postimg.org/image/em3006ejn/

As the topic title, im looking for augment shop "lineage 2 interlude java" , "acis" etc.I mean one npc which selling augment skills, example(1 event coin - 1 lvl passive skill PvP Duel Might or else 1 event coin for 1 more lvl of the skill) Is there a free augment shop i dont know but if someone can help me with something , he will be welcome.
The topic is application
Lineage II! Edited by rlfem123

7 answers to this question

Recommended Posts

  • 0
Posted

http://postimg.org/image/em3006ejn/

As the topic title, im looking for augment shop "lineage 2 interlude java" , "acis" etc.I mean one npc which selling augment skills, example(1 event coin - 1 lvl passive skill PvP Duel Might or else 1 event coin for 1 more lvl of the skill) Is there a free augment shop i dont know but if someone can help me with something , he will be welcome.

The topic is application

Lineage II!

i think is shared on the forum. start the searching

  • 0
Posted

I found one augment shop from big russia :D , but i have one problem with 2 methods , i mean "public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player)"   and    "public String onFirstTalk(L2NpcInstance npc, L2PcInstance player)"

          

 

 

package custom.AugmentShop;

 

import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.quest.QuestState;
import net.sf.l2j.gameserver.model.Inventory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import net.sf.l2j.L2DatabaseFactory;
import java.util.logging.Level;
import net.sf.l2j.gameserver.model.L2ItemInstance;
 
/**
 * 
 * @author adapted by Samar 2011 RUSSIA
 * 
 */
public class AugmentShop extends Quest
{
private final static int ITEM_ID = 57;
private final static int ITEM_COUNT = 1000000;
private final static String qn = "AugmentShop";
private final static int NPC = 91000;
 
public AugmentShop(int questId, String name, String descr) 
{
super(questId, name, descr);
addFirstTalkId(NPC);
addStartNpc(NPC);
addTalkId(NPC);
}
 
@Override
public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player)
{
String htmltext = "";
 
if (event.equalsIgnoreCase("active"))
{
htmltext = "active.htm";
}
 
else if (event.equalsIgnoreCase("passive"))
{
htmltext = "passive.htm";
}
 
else if (event.equalsIgnoreCase("chance"))
{
htmltext = "chance.htm";
}
 
else
{
 
updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13)));
}
 
 
return htmltext;
}
 
@Override
public String onFirstTalk(L2NpcInstance npc, L2PcInstance player)
{
String htmltext = "";
QuestState qs = player.getQuestState(qn);
if (qs == null)
qs = newQuestState(player);
htmltext = "main.htm";
return htmltext;
}
 
public static void main(String[] args)
{
new AugmentShop(-1, qn, "AugmentShop");
}
 
 
private static void updateAugment(L2PcInstance player, int attributes, int skill, int level)
{
L2ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null)
 
{
player.sendMessage("You have to equip a weapon.");
return;
}
 
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented())
{
player.sendMessage("The weapon is already augmented.");
return;
}
 
if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT)
{
player.sendMessage("You dont have enough item.");
return;
}
 
Connection con = null;
try
{
player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true);
con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)");
statement.setInt(1, item.getObjectId());
 
statement.setInt(2, attributes*65536+1);
statement.setInt(3, skill);
statement.setInt(4, level);
 
statement.executeUpdate();
player.sendMessage("Succesfully augmented. You have to relog now.");
statement.close();
 
}
catch (Exception e)
{
_log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e);
}
finally
{
try
{
 
/*L2DatabaseFactory.close(con);*/
con.close();
}
catch (Exception e)
{
}
}
}
 
 
}

 

 

 

 

How i can to fix it? Who method i can use??anyone? 

  • 0
Posted (edited)

remove the

@Override

and press ctrl + shift + o for organize the imports.

 

and change the L2ItemInstance to ItemInstance 

 

I tried that but when i click on the skill , example duel might i get error like this -> data/scripts/AugmenstShop/AugmenstShop.java , String index out of range: 13 , maybe store cant sell skill  i dont know anyone???

Edited by rlfem123
  • 0
Posted

Hi all now the npc is ok. Here i will post my fixed code for jacis. Good luck to all :)

 

package custom.AugmentShop;
 
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.item.instance.ItemInstance;
import net.sf.l2j.gameserver.model.itemcontainer.Inventory;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.quest.QuestState;
import java.sql.Connection;
import java.sql.PreparedStatement;
import net.sf.l2j.L2DatabaseFactory;
import java.util.logging.Level;
 
/**
 * 
 * @author Samar , fixed by rlfem123
 * 
 */
public class AugmentShop extends Quest
{
private final static int ITEM_ID = 4037;
private final static int ITEM_COUNT = 1;
private final static String qn = "AugmentShop";
private final static int NPC = 50005;
 
public AugmentShop(int questId, String name, String descr) 
{
super(questId, name, descr);
addFirstTalkId(NPC);
addStartNpc(NPC);
addTalkId(NPC);
}
 
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = "";
 
if (event.equalsIgnoreCase("active"))
{
htmltext = "active.htm";
}
 
else if (event.equalsIgnoreCase("passive"))
{
htmltext = "passive.htm";
}
 
else if (event.equalsIgnoreCase("chance"))
{
htmltext = "chance.htm";
}
 
else
{
 
updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13)));
}
 
 
return htmltext;
}
 
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = "";
QuestState qs = player.getQuestState(qn);
if (qs == null)
qs = newQuestState(player);
htmltext = "main.htm";
return htmltext;
}
 
public static void main(String[] args)
{
new AugmentShop(-1, qn, "AugmentShop");
}
 
 
private static void updateAugment(L2PcInstance player, int attributes, int skill, int level)
{
ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null)
 
{
player.sendMessage("You have to equip a weapon.");
return;
}
 
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented())
{
player.sendMessage("The weapon is already augmented.");
return;
}
 
if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT)
{
player.sendMessage("You dont have enough item.");
return;
}
 
Connection con = null;
try
{
player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true);
con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)");
statement.setInt(1, item.getObjectId());
 
statement.setInt(2, attributes*65536+1);
statement.setInt(3, skill);
statement.setInt(4, level);
 
statement.executeUpdate();
player.sendMessage("Succesfully augmented. You have to relog now.");
statement.close();
 
}
catch (Exception e)
{
_log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e);
}
finally
{
try
{
 
/*L2DatabaseFactory.close(con);*/
con.close();
}
catch (Exception e)
{
}
}
}
 
 
}

 

 

 

 

Thats it, and html files scripts/augmentshop/augmentshop/main.htm , active.htm , passive.htm , chance.htm   Have Fun

  • 0
Posted

 

Hi all now the npc is ok. Here i will post my fixed code for jacis. Good luck to all :)

 

package custom.AugmentShop;
 
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.item.instance.ItemInstance;
import net.sf.l2j.gameserver.model.itemcontainer.Inventory;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.quest.QuestState;
import java.sql.Connection;
import java.sql.PreparedStatement;
import net.sf.l2j.L2DatabaseFactory;
import java.util.logging.Level;
 
/**
 * 
 * @author Samar , fixed by rlfem123
 * 
 */
public class AugmentShop extends Quest
{
private final static int ITEM_ID = 4037;
private final static int ITEM_COUNT = 1;
private final static String qn = "AugmentShop";
private final static int NPC = 50005;
 
public AugmentShop(int questId, String name, String descr) 
{
super(questId, name, descr);
addFirstTalkId(NPC);
addStartNpc(NPC);
addTalkId(NPC);
}
 
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = "";
 
if (event.equalsIgnoreCase("active"))
{
htmltext = "active.htm";
}
 
else if (event.equalsIgnoreCase("passive"))
{
htmltext = "passive.htm";
}
 
else if (event.equalsIgnoreCase("chance"))
{
htmltext = "chance.htm";
}
 
else
{
 
updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13)));
}
 
 
return htmltext;
}
 
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = "";
QuestState qs = player.getQuestState(qn);
if (qs == null)
qs = newQuestState(player);
htmltext = "main.htm";
return htmltext;
}
 
public static void main(String[] args)
{
new AugmentShop(-1, qn, "AugmentShop");
}
 
 
private static void updateAugment(L2PcInstance player, int attributes, int skill, int level)
{
ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null)
 
{
player.sendMessage("You have to equip a weapon.");
return;
}
 
if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented())
{
player.sendMessage("The weapon is already augmented.");
return;
}
 
if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT)
{
player.sendMessage("You dont have enough item.");
return;
}
 
Connection con = null;
try
{
player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true);
con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)");
statement.setInt(1, item.getObjectId());
 
statement.setInt(2, attributes*65536+1);
statement.setInt(3, skill);
statement.setInt(4, level);
 
statement.executeUpdate();
player.sendMessage("Succesfully augmented. You have to relog now.");
statement.close();
 
}
catch (Exception e)
{
_log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e);
}
finally
{
try
{
 
/*L2DatabaseFactory.close(con);*/
con.close();
}
catch (Exception e)
{
}
}
}
 
 
}

 

 

 

 

Thats it, and html files scripts/augmentshop/augmentshop/main.htm , active.htm , passive.htm , chance.htm   Have Fun

 

can i have this code for frozne ??

Guest
This topic is now closed to further replies.


  • Posts

    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server! Create your free account here  
    • I've purchased the Samurai interface. Everything went smoothly, and the interface is excellent. Highly recommended!
    • For quick reference, I’ve been using the D12 dice roller when testing dice mechanics—clean design and instant results help a lot. It might give you a solid visual template to work from as you build your own games.
    • 🪙 GoldRush — High Five x20 🪙   A fresh High Five server focused on active progression, fair competition, and a healthy player-driven economy.   GoldRush is built for players who want a fresh spin on our beloved game that is connected to today's world via Web3 marketplace.    🏅 Gold Bar & Marketplace • Gold Bars are part of the server's custom economy — they can be used in Marketplace or Cosmetics shop. • Tokens are optional and used only for server Marketplace features.   ⚙️ Server Rates • EXP: 20x • SP: 20x • Adena: 10x • Normal Drop Chance: 8x • Spoil Chance: 12x • Raid Drop Chance: 3x • Quest Item Drop Amount: 5x • Quest EXP/SP Reward: 10x • Quest Adena Reward: 5x   ✨ Enchant Rates • Max Enchant: Weapons +16 / Armors +12 • +0 to +3 armor / weapon = 100% safe • +0 to +4 full body armor = 100% safe • +4 to +6 = 66% • +7 to +9 = 60% • +10 to +12 = 54% • +13 to +14 = 48% • +15 to +16 = 42%   🛒 Alt+B Services GoldRush includes useful Alt+B services: • GM Shop up to Dynasty • Buffer 1h • Teleports • Drop Search • Rankings   🎒 Auto-Loot • Normal mob drops: auto-loot • Adena: auto-loot • Raid drops: stay on the ground • Herbs: stay on the ground   🧙 Class Progression • 1st and 2nd professions are free with shadow weapon reward. • 3rd profession: 5kk • Auto Learn Skills • Subclass - No Quest • Noblesse - Full Quest     ⚔️ Olympiad • Hero period: 1 week • Olympiad time: 18:00–00:00 server time • Match duration: 5 minutes • Max enchant in Olympiad: +6   🏰 Sieges Castle sieges take place on Sundays at 16:00 and 20:00 GMT+3. The first siege will happen 2 weeks after launch.   🐉 Grand Boss Respawn Queen Ant: 24h + 2h random Core: 30h + 2h random Orfen: 48h + 2h random Baium: 120h + 3h random Antharas: 120h + 24h random Valakas: 120h + 24h random Beleth: 120h + 24h random   ⚔️ Fair Play Bots are strictly forbidden and will result in a ban without warning. Dualbox is limited to 1 box. GoldRush is built around a healthy player-to-player economy. Website : https://www.goldrushpvp.xyz/ Discord : https://discord.com/invite/v3zRZVV6ka Guide of how to make an account on our web3 server!  
    • Patch notes of update v1.0 is done regarding some feedbacks. Added Special Buffs category to the buffer. Queen Cat, Seraphim and Dwarf equipment buffs are now available. Special buffs last 1 hour and can be saved in schemes. Players can now Shift+Click monsters to check drops and spoil directly in-game.
  • 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..