Jump to content
  • 0

[Help]Import Missed


Question

Posted

hello i want to add this script on my server

 

http://maxcheaters.com/forum/index.php?topic=159401.0

 

but here are problem :

 

import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.quest.Quest;
import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.model.itemcontainer.Inventory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import com.l2jserver.L2DatabaseFactory;
import java.util.logging.Level;
import com.l2jserver.gameserver.model.L2ItemInstance;

 

i dont find L2Npc in my pack

 

( import com.l2jserver.gameserver.model.actor.L2Npc;)

 

... i have only

 

gameserver\templates\L2NpcTemplate;
gameserver\model\actor\instance\L2NpcBufferInstance;
\gameserver\model\actor\instance\L2NpcInstance;
gameserver\model\actor\instance\L2NpcWalkerInstance;
\gameserver\ai\L2NpcWalkerAI

 

and other like this ....

 

any ideas how can i make this script to work for my server ?

11 answers to this question

Recommended Posts

  • 0
Posted

Talking about an IL server,

 

Freya                                IL

L2Npc      ---------->   L2NpcInstance

L2NpcInstance  --->    L2FolkInstance

 

When ppl will understand helpers need a minimum infos, perhaps you will have help...

  • 0
Posted

i find this what i need but i still have problem with import

 

1. ERROR in /AugmentShop.java (at line 113)
if (item.getElementals() == null)
         ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
2. ERROR in /AugmentShop.java (at line 120)
statement.setByte(5, item.getElementals().getElement());
                          ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
3. ERROR in /AugmentShop.java (at line 121)
statement.setInt(6, item.getElementals().getValue());
                         ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
4. ERROR in /AugmentShop.java (at line 134)
L2DatabaseFactory.close(con);
                  ^^^^^
The method close(Connection) is undefined for the type L2DatabaseFactory
----------
4 problems (4 errors)The method close(java.sql.Connection) is undefined for the type com.l2jarchid.L2DatabaseFactory
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance

 

any ideas how to fix it for interlude pack 

 

 

 

 

  • 0
Posted

L2DatabaseFactory.close(con);

 

=

 

try { con.close(); } catch (Exception e) {}

 

-----

 

About augments, it's obvious... Be clever, you use postIL stuff and hope an augmenter with elementals stones can work.

 

Remove things using it, but you will surely broke the whole system than correct it.

 

Give the method with errors  from L2ItemInstance, and the AugmentShop.java.

  • 0
Posted

that is my rework script / already shared in mxc but from Gracia , i try to make for Interlude

 

import com.l2jarchid.gameserver.model.actor.instance.L2NpcInstance;
import com.l2jarchid.gameserver.model.actor.instance.L2PcInstance;
import com.l2jarchid.gameserver.model.quest.Quest;
import com.l2jarchid.gameserver.model.quest.QuestState;
import com.l2jarchid.gameserver.model.Inventory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import com.l2jarchid.L2DatabaseFactory;
import java.util.logging.Level;
import com.l2jarchid.gameserver.model.L2ItemInstance;

/**
* 
* @author Rizel
*
*/
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 attribute, 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 item_attributes VALUES(?,?,?,?,?,?)");
		statement.setInt(1, item.getObjectId());

			statement.setInt(2, attribute*65536+1);
			statement.setInt(3, skill);
			statement.setInt(4, level);

		if (item.getElementals() == null)
		{
			statement.setByte(5, (byte) -1);
			statement.setInt(6, -1);
		}
		else
		{
			statement.setByte(5, item.getElementals().getElement());
			statement.setInt(6, item.getElementals().getValue());
		}
		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
	{
		L2DatabaseFactory.close(con);
	}
}


}

 

 

error message from Import

 

----------
1. ERROR in /AugmentShop.java (at line 113)
if (item.getElementals() == null)
         ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
2. ERROR in /AugmentShop.java (at line 120)
statement.setByte(5, item.getElementals().getElement());
                          ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
3. ERROR in /AugmentShop.java (at line 121)
statement.setInt(6, item.getElementals().getValue());
                         ^^^^^^^^^^^^^
The method getElementals() is undefined for the type L2ItemInstance
----------
4. ERROR in /AugmentShop.java (at line 134)
L2DatabaseFactory.close(con);
                  ^^^^^
The method close(Connection) is undefined for the type L2DatabaseFactory
----------
4 problems (4 errors)The method close(java.sql.Connection) is undefined for the type com.l2jarchid.L2DatabaseFactory
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance
The method getElementals() is undefined for the type com.l2jarchid.gameserver.model.L2ItemInstance
Failed executing script: home/GameServer/data/jscript/custom/AugmentShop/AugmentShop.java. See AugmentShop.java.error.log for details.

 

AugmentShop.java.error.log files

 

Error on: /home/GameServer/data/jscript/custom/AugmentShop/AugmentShop.java.error.log
Line: -1 - Column: -1

compilation failed

  • 0
Posted

		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, attribute*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 { con.close(); } catch (Exception e) {}
	}

 

I'm too kind.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Dear players, From April 19 to April 27 inc., the Bonus Start event will be active. It’s designed to help new and low-level characters get started more easily.   All characters that meet one of the following conditions: — created less than 3 days ago (regardless of level), — currently level 20 or below, — created during the event period, will receive upon login: — 10 sets of buff scrolls (phys or mage, depending on class), — 10 packs of +50% Drop/Spoil runes (2 hours each), — 10 packs of +50% Exp runes (2 hours each). Characters between level 21 and 30 will receive upon login: — 6 sets of buff scrolls, — 6 packs of +50% Drop/Spoil runes (2h each), — 6 packs of +50% Exp runes (2h each).   Event items will be removed approx. 09.05.2025 Server rates will be increased to x2.25. Take this chance to start your journey with ease or bring an old hero back into the fight — it’s the perfect time to test your strength! Open Beta Test is started!  Helper cats are waiting in towns — talk to them to receive the necessary equipment and level up your character. Siege Schedule:  - April 13 at 16:00 (GMT+2) – Innadrile Castle - April 14 at 20:00 (GMT+2) – Bandit Stronghold - April 15 at 20:00 (GMT+2) – Devastated Castle 📌 During the OBT, players who report bugs will receive CoL:   - 1 CoL for each reported staticmeshes bug (e.g., walking through textures, stairs, etc.) - 2 CoL or more for server-related issues (depending on severity) You can report bugs on the forum. The Open Beta Test will run approximately until April 15 at 23:00 (GMT+2). Your activity and feedback will help us improve the game.   Download links: Download client | Download updater 
    • begin if (user.dead) then begin delay(555); Engine.GoHome(rtCastle); print('User dead, going to castle..') end; end.  
    • Hello everyone. Long time no see. I've been trying to play L2 on my 4k monitor, however the UI is extremely small.  I checked around the internet and couldn't find a guide on how to keep the resolution high and the UI size a bit bigger. I either get small UI + full resolution (correct resolution of monitor), or normal sized UI but resolution set to full HD (which doesn't really look good on a 4k screen). Adjusting scaling on display settings doesn't change the UI just the text on L2. Does anyone know a way to increase the UI size only and keeping the screens resolution same (4k) ? I'll share a screenshot as an example, and it 's not even full screen mode. https://freeimage.host/i/3cvPVnI  
    • Hello guys. I want to know if there is a way(script or something) to make character go to castle after death in adrenaline bot
    • hahahahahahahahahahhaaahahaha
  • Topics

×
×
  • Create New...