Jump to content

Question

Posted (edited)

First of all: if you don't want to help or if u would say: You can get it from me for money... then don't write anything and lock the topic immediately. I want to see if SOMEBODY  ( doesnt have to ) it's his free will, to help me with this....I don't want any drama.....
 
 
 
 
 
I am actually having a problem that i can't solve xD..... i wanna transforom 1 code into another but i am not successing it......it's about kamaels.... i created a npc with quest items for 1st class and 2 nd class, that ppl can buy it and use it.... so they can skip doing class quests ......... when other chars buy it and use it it works fine, but when kamaels do it they can't get the class, because they HAVE TO do the quest, the code requires that from them..... here is the code of the dwarf  and it success taking a item without completed quest ... I want to make some version of code for kamael .....  ( the code is under )
 
 

/*

 * Copyright © 2004-2016 L2J DataPack

 * 

 * This file is part of L2J DataPack.

 * 

 * L2J DataPack is free software: you can redistribute it and/or modify

 * it under the terms of the GNU General Public License as published by

 * the Free Software Foundation, either version 3 of the License, or

 * (at your option) any later version.

 * 

 * L2J DataPack is distributed in the hope that it will be useful,

 * but WITHOUT ANY WARRANTY; without even the implied warranty of

 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU

 * General Public License for more details.

 * 

 * You should have received a copy of the GNU General Public License

 * along with this program. If not, see <http://www.gnu.org/licenses/>.

 */

package village_master.DwarfWarehouseChange1;

 

import ai.npc.AbstractNpcAI;

 

import com.l2jserver.gameserver.enums.CategoryType;

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

import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

import com.l2jserver.gameserver.model.base.ClassId;

 

/**

 * Dwarf class transfer AI.

 * @author Adry_85

 */

public final class DwarfWarehouseChange1 extends AbstractNpcAI

{

// NPCs

private static int[] NPCS =

{

30498, // Moke

30503, // Rikadio

30594, // Ranspo

32092, // Alder

};

 

// Items

private static final int SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE = 8869;

private static final int RING_OF_RAVEN = 1642;

// Class

private static final int SCAVENGER = 54;

 

private DwarfWarehouseChange1()

{

super(DwarfWarehouseChange1.class.getSimpleName(), "village_master");

addStartNpc(NPCS);

addTalkId(NPCS);

}

 

@Override

public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)

{

String htmltext = null;

switch (event)

{

case "30498-01.htm": // warehouse_chief_moke003f

case "30498-02.htm": // warehouse_chief_moke006fa

case "30498-03.htm": // warehouse_chief_moke007fa

case "30498-04.htm": // warehouse_chief_moke006fb

case "30503-01.htm": // warehouse_chief_rikadio003f

case "30503-02.htm": // warehouse_chief_rikadio006fa

case "30503-03.htm": // warehouse_chief_rikadio007fa

case "30503-04.htm": // warehouse_chief_rikadio006fb

case "30594-01.htm": // warehouse_chief_ranspo003f

case "30594-02.htm": // warehouse_chief_ranspo006fa

case "30594-03.htm": // warehouse_chief_ranspo007fa

case "30594-04.htm": // warehouse_chief_ranspo006fb

case "32092-01.htm": // warehouse_chief_older003f

case "32092-02.htm": // warehouse_chief_older006fa

case "32092-03.htm": // warehouse_chief_older007fa

case "32092-04.htm": // warehouse_chief_older006fb

{

htmltext = event;

break;

}

case "54":

{

htmltext = ClassChangeRequested(player, npc, Integer.valueOf(event));

break;

}

}

return htmltext;

}

 

private String ClassChangeRequested(L2PcInstance player, L2Npc npc, int classId)

{

String htmltext = null;

if (player.isInCategory(CategoryType.SECOND_CLASS_GROUP))

{

htmltext = npc.getId() + "-06.htm"; // fnYouAreSecondClass

}

else if (player.isInCategory(CategoryType.THIRD_CLASS_GROUP))

{

htmltext = npc.getId() + "-07.htm"; // fnYouAreThirdClass

}

else if (player.isInCategory(CategoryType.FOURTH_CLASS_GROUP))

{

htmltext = "30498-12.htm"; // fnYouAreFourthClass

}

else if ((classId == SCAVENGER) && (player.getClassId() == ClassId.dwarvenFighter))

{

if (player.getLevel() < 20)

{

if (hasQuestItems(player, RING_OF_RAVEN))

{

htmltext = npc.getId() + "-08.htm"; // fnLowLevel11

}

else

{

htmltext = npc.getId() + "-09.htm"; // fnLowLevelNoProof11

}

}

else if (hasQuestItems(player, RING_OF_RAVEN))

{

takeItems(player, RING_OF_RAVEN, -1);

player.setClassId(SCAVENGER);

player.setBaseClass(SCAVENGER);

// SystemMessage and cast skill is done by setClassId

player.broadcastUserInfo();

giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);

htmltext = npc.getId() + "-10.htm"; // fnAfterClassChange11

}

else

{

htmltext = npc.getId() + "-11.htm"; // fnNoProof11

}

}

return htmltext;

}

 

@Override

public String onTalk(L2Npc npc, L2PcInstance player)

{

String htmltext = null;

if (player.isInCategory(CategoryType.BOUNTY_HUNTER_GROUP))

{

htmltext = npc.getId() + "-01.htm"; // fnClassList1

}

else

{

htmltext = npc.getId() + "-05.htm"; // fnClassMismatch

}

return htmltext;

}

 

public static void main(String[] args)

{

new DwarfWarehouseChange1();

}

}

 
 
 
_____________________________________________________________________________________________________________________________________________________
 
 
and then here is the Kamael code that doesn't work, I  wanna make it that it doesn't require to take make the quest..... i want to make it ifplayerhasitems to take them and give him the class by it's id.....not that he ' has to do ' the quest.....  :( .... heres the code of stupid kamael....
 
 
 
 

/*
 * Copyright © 2004-2016 L2J DataPack
 * 
 * This file is part of L2J DataPack.
 * 
 * L2J DataPack is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * L2J DataPack is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package village_master.KamaelChange1;
 
import quests.Q00062_PathOfTheTrooper.Q00062_PathOfTheTrooper;
import quests.Q00063_PathOfTheWarder.Q00063_PathOfTheWarder;
import ai.npc.AbstractNpcAI;
 
import com.l2jserver.gameserver.data.xml.impl.CategoryData;
import com.l2jserver.gameserver.enums.CategoryType;
import com.l2jserver.gameserver.enums.Race;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.base.ClassId;
import com.l2jserver.gameserver.model.quest.QuestState;
 
/**
 * Kamael class transfer AI.
 * @author Adry_85
 */
public final class KamaelChange1 extends AbstractNpcAI
{
// NPCs
private static int[] NPCS =
{
32191, // Hanarin
32193, // Yeniche
32196, // Gershwin
32199, // Holst
32202, // Khadava
};
 
// Items
private static final int SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE = 8869;
private static final int GWAINS_RECOMMENDATION = 9753;
private static final int STEELRAZOR_EVALUATION = 9772;
 
private KamaelChange1()
{
super(KamaelChange1.class.getSimpleName(), "village_master");
addStartNpc(NPCS);
addTalkId(NPCS);
}
 
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = null;
switch (event)
{
case "32191-02.htm": // master_all_kamael003m
case "32191-03.htm": // master_all_kamael006ma
case "32191-04.htm": // master_all_kamael007ma
case "32191-05.htm": // master_all_kamael007mait
case "32191-06.htm": // master_all_kamael003f
case "32191-07.htm": // master_all_kamael006fa
case "32191-08.htm": // master_all_kamael007fa
case "32191-09.htm": // master_all_kamael007fa
{
htmltext = event;
break;
}
case "125":
case "126":
{
htmltext = ClassChangeRequested(player, Integer.valueOf(event));
break;
}
}
return htmltext;
}
 
private String ClassChangeRequested(L2PcInstance player, int classId)
{
String htmltext = null;
if (CategoryData.getInstance().isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP, classId))
{
if (player.isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP))
{
htmltext = "32191-10.htm"; // master_all_kamael004a
}
else if (player.isInCategory(CategoryType.KAMAEL_THIRD_CLASS_GROUP))
{
htmltext = "32191-11.htm"; // master_all_kamael005a
}
else if (player.isInCategory(CategoryType.KAMAEL_FOURTH_CLASS_GROUP))
{
htmltext = "32191-12.htm"; // master_all_kamael100a
}
else if ((classId == 125) && (player.getClassId() == ClassId.maleSoldier))
{
QuestState qs = player.getQuestState(Q00062_PathOfTheTrooper.class.getSimpleName());
if (player.getLevel() < 20)
{
if ((qs != null) && qs.isCompleted())
{
htmltext = "32191-13.htm"; // master_all_kamael009ma
}
else
{
htmltext = "32191-14.htm"; // master_all_kamael008ma
}
}
else if ((qs == null) || !qs.isCompleted())
{
htmltext = "32191-15.htm"; // master_all_kamael010ma
}
else
{
takeItems(player, GWAINS_RECOMMENDATION, -1);
player.setClassId(125);
player.setBaseClass(125);
// SystemMessage and cast skill is done by setClassId
player.broadcastUserInfo();
giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
htmltext = "32191-16.htm"; // master_all_kamael011ma
}
}
else if ((classId == 126) && (player.getClassId() == ClassId.femaleSoldier))
{
QuestState qs = player.getQuestState(Q00063_PathOfTheWarder.class.getSimpleName());
if (player.getLevel() < 20)
{
if ((qs != null) && qs.isCompleted())
{
htmltext = "32191-17.htm"; // master_all_kamael008fa
}
else
{
htmltext = "32191-18.htm"; // master_all_kamael009fa
}
}
else if ((qs == null) || !qs.isCompleted())
{
htmltext = "32191-19.htm"; // master_all_kamael010fa
}
else
{
takeItems(player, STEELRAZOR_EVALUATION, -1);
player.setClassId(126);
player.setBaseClass(126);
// SystemMessage and cast skill is done by setClassId
player.broadcastUserInfo();
giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
htmltext = "32191-20.htm"; // master_all_kamael011fa
}
}
}
return htmltext;
}
 
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = null;
if (player.getRace() != Race.KAMAEL)
{
htmltext = "32191-01.htm"; // master_all_kamael002a
}
else if (player.isInCategory(CategoryType.KAMAEL_FIRST_CLASS_GROUP))
{
if (player.getClassId() == ClassId.maleSoldier)
{
htmltext = "32191-02.htm"; // master_all_kamael003m
}
else if (player.getClassId() == ClassId.femaleSoldier)
{
htmltext = "32191-06.htm"; // master_all_kamael003f
}
}
else if (player.isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP))
{
htmltext = "32191-10.htm"; // master_all_kamael004a
}
else if (player.isInCategory(CategoryType.KAMAEL_THIRD_CLASS_GROUP))
{
htmltext = "32191-11.htm"; // master_all_kamael005a
}
else
{
htmltext = "32191-12.htm"; // master_all_kamael100a
}
return htmltext;
}
 
public static void main(String[] args)
{
new KamaelChange1();
}
}

 

 
 
 
 
 
Thanks in advance. Keep in mind i don't want any drama....
 If you want to help then help, if you don't want to help, ignore or lock the topic/delete... whatever..... thanks........
 
 
P.S. I am sorry, i am just tired of this kind of comments.... why to make it when you can simply avoid it.... 

 

Edited by Celestine

5 answers to this question

Recommended Posts

  • 0
Posted

Wrong section.. You should post it here. I will ask for move.

 

Edit your topic and add

 (without space) or use pastebin.com for your code to be more readable... 

 

 

  • 0
Posted

Wrong section.. You should post it here. I will ask for move.

 

Edit your topic and add

 (without space) or use pastebin.com for your code to be more readable... 

 

Done + edited the topic.

  • 0
Posted
		else if ((classId == 125) && (player.getClassId() == ClassId.maleSoldier))
		{
-			QuestState qs = player.getQuestState(Q00062_PathOfTheTrooper.class.getSimpleName());
-			if (player.getLevel() < 20)
-			{
-				if ((qs != null) && qs.isCompleted())
-				{
-					htmltext = "32191-13.htm"; // master_all_kamael009ma
-				}
-				else
-				{
-					htmltext = "32191-14.htm"; // master_all_kamael008ma
-				}
-			}
-			else if ((qs == null) || !qs.isCompleted())
-			{
-				htmltext = "32191-15.htm"; // master_all_kamael010ma
-			}
-			else
-			{
				takeItems(player, GWAINS_RECOMMENDATION, -1);
				player.setClassId(125);
				player.setBaseClass(125);
				// SystemMessage and cast skill is done by setClassId
				player.broadcastUserInfo();
				giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
				htmltext = "32191-16.htm"; // master_all_kamael011ma
-			}
		}
		else if ((classId == 126) && (player.getClassId() == ClassId.femaleSoldier))
		{
-			QuestState qs = player.getQuestState(Q00063_PathOfTheWarder.class.getSimpleName());
-			if (player.getLevel() < 20)
-			{
-				if ((qs != null) && qs.isCompleted())
-				{
-					htmltext = "32191-17.htm"; // master_all_kamael008fa
-				}
-				else
-				{
-				htmltext = "32191-18.htm"; // master_all_kamael009fa
-				}
-			}
-			else if ((qs == null) || !qs.isCompleted())
-			{
-				htmltext = "32191-19.htm"; // master_all_kamael010fa
-			}
-			else
-			{
				takeItems(player, STEELRAZOR_EVALUATION, -1);
				player.setClassId(126);
				player.setBaseClass(126);
				// SystemMessage and cast skill is done by setClassId
				player.broadcastUserInfo();
				giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
				htmltext = "32191-20.htm"; // master_all_kamael011fa
-			}
		}

try this one

  • 0
Posted (edited)

can i use  if ((qs != null) && qs.isCompleted]())  and then  takeItems(player, STEELRAZOR_EVALUATION -1);

                player.setClassId(126);

               player.setBaseClass(126);

                // SystemMessage and cast skill is done by setClassId

               player.broadcastUserInfo();

                giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);

            }

        }

Edited by milosvamp
Guest
This topic is now closed to further replies.


  • Posts

    • Thank you for sharing your work!
    • Thank you for sharing the work you have done with us. It doesn't matter how each person characterizes it... what matters is that you shared it and kept your word.
    • Good share, soon i will share also Vanganth Classic P110 Source, I'm waiting to find the reseller.
    • L2 DEVS - HTML DESIGN (ALL NPC'S)    
    • I only share for free what they are reselling 🙂 You keep crying in all the publications, and if you are looking for h5 or gd wait for 5 or 6 years... cheers.... GENERAL Cached Extended to 8192kb IOBuffer Hair2SlotCache ItemBidAuctioner Clan Hall Current Olympiad Season Rank pages System (Shows Points/Games - Fully Configurable) Automatic Flag Around Raidboss System Offline Shop & Buffers Restore After Restart (Fixed location) Offline Buffer System PvP Auto Announce System Rebuilt with Extra Addons (Fully Configurable, Name, Zones, Rewards) Automatic Announce System Rebuilt with Extra Addons (Fully Configurable) ALT+B Augmentation House Shift+Click Droplist/Spoil List Epic Items Rank RB points Rank ChangeColorName ChangeColorTitle Change Skin (Race) Change Gender Custom Subclass (Acumulative) Achievements Item Delivery System  Augmentations/Enchants Automatic Announce System Auto Learn Skills PvP Reward Pk Reward War Reward Scheme buffer GlobalChatTrade Trade Augment Items Castle Announce Time Castle Standby Time Fix Spiritshots delay SpellbooksDrop Enable/Disable Drop custom Fully configurable, lvl min max allmobs, allrb, individual New cancel effect min,max BlessedarmorEnchantRate BlessedmagicWeaponEnchantRate BlessednormalWeaponEnchantRate MaxSlosChars MaxSlotsDwarfs Enable or disable all commands Fix fast loading npc OlympiadRestoreStatsOnFightStart OlympiadSystemSecondTimeEnabled OlympiadEnterLast10Minute OlympiadThirdClassSummons MinLevelTrade AnnounceSubClassMsg1 AnnounceSubClassMsg2 AnnounceSubClassMsg3 LimitedSubClassRace NoSellItems Change ID SealStones for AA NoPrivateBuyItems NoDropPlayerOnDie DisableSkillEnchantData Show Level Mobs Show npc clan flag DespawnSummonEnBattle SummonPetEnBattle RideSummonPetEnBattle DitanceToTargetMove EnterWorld_Undying EnterWorld_UnHide BlockWhispMessagePlayerToGM UseItemsWithHide CriticalSkillDamageBonusPer=4.0 Disable SSQSystem OnCastle Siege End Use any dyes Buy halls directly in auctioneer without waiting for the auction, configuration to change the item you consume MensajeEnterWorldServer Command .hero enable/disable hero aura Config vip global chat character, chat by systemsg Soulshots: NoSendSystemMessageUse Panel //admin Global vote reward Agathions system Anti Interface, control all patch files by md5 Command .menu configurable, last restart, name, maxusers, privatestores Spawn protection activate deactivate consume items to activate  Activate or deactivate autoloot for vip characters EVENTS Happy Hour Event reworked Configurable by announcements or systemsg Team VS Team Capture The Flag Death Match Last Man Standing Destroy The Base Korean Style Castle Siege Check if the player is inside the tvt event due to disconnection/critical error Top 1/5 killer reward/announce TimeAfk ResetReuseSkills ResetBuffsOnFinish Firework effect Reward win/lost Add Team Location Title custom Red/blue Open Door/Wall System BalanceBishops Show kills in title Invest positions Show Death To Top Delete Non-Subclass Skills     RELOADS Reload Enterworld Html Option Reload Faction System Reload Donate Shop Reload OfflineBuffer Reload Champion NPC Reload CliExt Reload AntiBot Reload Vip System Reload Auction Reload AutoLoot Reload CastleSiegeManager Reload CharacterLock Reload ClanPvPStatus Reload AutoLearn Reload ClanReputationRank Reload ClanSystem Reload CreatureAction Reload Customs.ini Reload L2server.ini Reload SkillData.txt Reload doordata.txt Reload decodata.txt Reload Multisell Reload DropList   Extender tested for more than 3 years. Assured stability. Possibility of adding MOD's upon request. (Not included, consult).
  • Topics

×
×
  • Create New...