Jump to content
  • 0

{L2Off-Interlude} Multiple Initial Equipment?


Question

Posted (edited)

Hi, 

Im willing to add multiple initial items to newly created characters, can someone point out the syntax to be used?

 

Lets say, I want each char to have 5 Scroll of Escape to Giran, how do i do that given this settings i already have active (see below)?

 

Thanks

//When the player starts initially, having, the equipment list which it starts
initial_equipment_begin
	human_fighter={[hard_leather_helmet];[bone_gaiters];[bone_shield];[bone_breastplate];[bracer];[boots];[sword_breaker];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	human_magician={[bone_shield];[bracer];[leather_helmet];[tunic_of_devotion];[hose_of_devotion];[boots];[voodoo_doll];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	elf_fighter={[hard_leather_helmet];[bone_gaiters];[bone_shield];[bone_breastplate];[bracer];[boots];[sword_breaker];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	elf_magician={[bone_shield];[bracer];[leather_helmet];[tunic_of_devotion];[hose_of_devotion];[boots];[voodoo_doll];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	darkelf_fighter={[hard_leather_helmet];[bone_gaiters];[bone_shield];[bone_breastplate];[bracer];[boots];[sword_breaker];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	darkelf_magician={[bone_shield];[bracer];[leather_helmet];[tunic_of_devotion];[hose_of_devotion];[boots];[voodoo_doll];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	orc_fighter={[hard_leather_helmet];[bone_gaiters];[bone_shield];[bone_breastplate];[bracer];[boots];[iron_hammer];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	orc_shaman={[bone_shield];[bracer];[leather_helmet];[tunic_of_devotion];[hose_of_devotion];[boots];[voodoo_doll];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
	dwarf_apprentice={[hard_leather_helmet];[bone_gaiters];[bone_shield];[bone_breastplate];[bracer];[boots];[iron_hammer];[blue_diamond_necklace];[coral_earing];[coral_earing];[blue_coral_ring];[blue_coral_ring];[escape_scroll_giran];[tutorial_guide]}
initial_equipment_end
Edited by eKoIce

6 answers to this question

Recommended Posts

  • 0
Posted (edited)

Solved like this:

 

Itemdata

item_begin etcitem 20003 [eko_box_bonus_all] item_type=etcitem slot_bit_type={none} armor_type=none etcitem_type=none recipe_id=0 blessed=0 weight=10 default_action=action_skill_reduce consume_type=consume_type_stackable initial_count=1 maximum_count=20 soulshot_count=0 spiritshot_count=0 reduced_soulshot={} reduced_spiritshot={} reduced_mp_consume={} immediate_effect=0 price=0 default_price=0 item_skill=[s_eko_box_bonus_all] critical_attack_skill=[none] attack_skill=[none] magic_skill=[none] item_skill_enchanted_four=[none] material_type=liquid crystal_type=none crystal_count=0 is_trade=1 is_drop=1 is_destruct=1 physical_damage=0 random_damage=0 weapon_type=none can_penetrate=0 critical=0 hit_modify=0 avoid_modify=0 dual_fhit_rate=0 shield_defense=0 shield_defense_rate=0 attack_range=0 damage_range={} attack_speed=0 reuse_delay=0 mp_consume=0 magical_damage=0 durability=0 damaged=0 physical_defense=0 magical_defense=0 mp_bonus=0 category={} enchanted=0 html=[item_default.htm] equip_pet={0} magic_weapon=0 enchant_enable=0 can_equip_sex=-1 can_equip_race={} can_equip_change_class=-1 can_equip_class={} can_equip_agit=-1 can_equip_castle=-1 can_equip_castle_num={} can_equip_clan_leader=-1 can_equip_clan_level=-1 can_equip_hero=-1 can_equip_nobless=-1 can_equip_chaotic=-1 item_end

Skilldata

skill_begin skill_name=[s_eko_box_bonus_all] /* * */ skill_id=10053 level=1 operate_type=A1 magic_level=1 effect={{i_give_item;8916;1};{i_give_item;8753;2};{i_give_item;6408;1};{i_give_item;7126;10};{i_give_item;57;5000000};{i_give_item;728;50};{i_give_item;1539;50}} is_magic=2 operate_cond={{op_can_get_item;20}} mp_consume2=0 item_consume={[eko_box_bonus_all];1} cast_range=-1 effective_range=-1 skill_hit_time=0 skill_cool_time=0 skill_hit_cancel_time=0 reuse_delay=0 attribute=attr_none effect_point=0 target_type=self affect_scope=single affect_limit={0;0} next_action=none ride_state={@ride_none} skill_end

skill_pch

[s_eko_box_bonus_all] = 2572003

skill_pch2

2572003 -1 0 0 0 0 34 -1 0 1 0 0 -12345

Then the client part on itemname and etcgroup.

 

Leaving it here for reference for other people who might need it.

 

Cheers.

Edited by eKoIce
  • 0
Posted (edited)

In leaked GF you would write {[escape_scroll_giran];5} but I'm not sure whether C4 can parse this correctly. What if you put it there 5 times as [escape_scroll_giran]?

Edited by eressea
  • 0
Posted

tried this {[escape_scroll_giran];5} and isnt working.

doing 5 times the same, is working. might find a better solution, maybe a doubleclick package to open and give 5 scrolls...

 

thanks!

  • 0
Posted

tried this {[escape_scroll_giran];5} and isnt working.

doing 5 times the same, is working. might find a better solution, maybe a doubleclick package to open and give 5 scrolls...

 

thanks!

omfg make a fucking code and parse an xml

  • 0
Posted (edited)

omfg make a fucking code and parse an xml

 

 

This is so entertaining.

 

Access the retard will pop up and say something irrelevant and stupid.

 

Mxc 2017

 

xD

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


  • Posts

    • 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).
    • some peoples trash is another mans treasure, is that your treasure?   people might like the content but you are still the rat in the room     thats the community judging you.  
    • Keep reselling what I publish here for free!!! 🙂 GG  
  • Topics

×
×
  • Create New...