Jump to content

Recommended Posts

Posted

Hello, I am creating a buffer in l2 off, my problem is that it buffers well, but when I want to create a scheme it tells me "invalid buff" and does not create the list, I will leave the htm so you can check what I am doing wrong.

 

Video 1: https://gyazo.com/89ec0299316ca606333f44c366a248f7

 

Code scheme (I used):

 

<html>
<head>
<title>:: Scheme Buffer :: Player</title>
</head>
<body>
<center>
<img src="L2UI_CH3.onscrmsg_pattern01_1" width=300 height=32 align=left><br>
<br>
Please choose a buff from the list:
<br>
<a action="bypass sb_b_p?id=1111554">Wind Walk</a>
<a action="bypass sb_b_p?id==1112067">Shield</a>
<a action="bypass sb_b_p?id==1112323">Might</a>
<a action="bypass sb_b_p?id==355587">Great Shield</a>
<a action="bypass sb_b_p?id==355331">Great Might</a>
<a action="bypass sb_b_p?id==1112580">Mental Shield</a>
<a action="bypass sb_b_p?id==1112838">Bless The Body</a>
<a action="bypass sb_b_p?id==1113094">Bless The Soul</a>
<a action="bypass sb_b_p?id==1113346">Magic Barrier</a>
<a action="bypass sb_b_p?id==1113604">Resist Shock</a>
<a action="bypass sb_b_p?id==1113862">Concentration</a>
<a action="bypass sb_b_p?id==1114114">Berserker Spirit</a>
<a action="bypass sb_b_p?id==1114374">Bless Shield</a>
<a action="bypass sb_b_p?id==1114628">Vampiric Rage</a>
<a action="bypass sb_b_p?id==1114883">Acumen</a>
<a action="bypass sb_b_p?id==1115139">Empower</a>
<a action="bypass sb_b_p?id==357635">Clarity</a>
<a action="bypass sb_b_p?id==333570">Wild Magic</a>
<a action="bypass sb_b_p?id==1115394">Haste</a>
<a action="bypass sb_b_p?id==1115651">Guidance</a>
<a action="bypass sb_b_p?id==1115907">Focus</a>
<a action="bypass sb_b_p?id==1116163">Death Whisper</a>
<a action="bypass sb_b_p?id==346881">Prophecy of Water</a>
<a action="bypass sb_b_p?id==347137">Prophecy of Fire</a>
<a action="bypass sb_b_p?id==347393">Prophecy of Wind</a>
<a action="bypass sb_b_p?id==348929">Chant of Victory</a>
<a action="bypass sb_b_p?id==69377">Dance of Warrior</a>
<a action="bypass sb_b_p?id==69889">Dance of Mystic</a>
<a action="bypass sb_b_p?id==70145">Dance of Fire</a>
<a action="bypass sb_b_p?id==70401">Dance of Fury</a>
<a action="bypass sb_b_p?id==70657">Dance of Concentration</a>
<a action="bypass sb_b_p?id==93441">Dance of Siren</a>
<a action="bypass sb_b_p?id==79361">Dance of Vampire</a>
<a action="bypass sb_b_p?id==67585">Song of Earth</a>
<a action="bypass sb_b_p?id==77825">Song of Vitality</a>
<a action="bypass sb_b_p?id==68353">Song of Warding</a>
<a action="bypass sb_b_p?id==68609">Song of Wind</a>
<a action="bypass sb_b_p?id==68865">Song of Hunter</a>
<a action="bypass sb_b_p?id==89345">Song of Renewal</a>
<a action="bypass sb_b_p?id==92929">Song of Meditation</a>
<a action="bypass sb_b_p?id==93185">Song of Champion</a>
<br>
<button value="Back" action="link menu_buffer001.htm" width=75 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal">
<br><br>
<img src="L2UI_CH3.onscrmsg_pattern01_1" width=300 height=32 align=left><br>
</center>
</body>
</html>

 

 

----------------------------------------------------------

 

Scheme script guide:

 

//Bypass description:
//sb_b_p?id=SKILL_PCH_ID - buff player
//sb_b_s?id=SKILL_PCH_ID - buff summon
//sb_a_p?id=SKILL_PCH_ID - add buff to player's buff list
//sb_a_s?id=SKILL_PCH_ID - add buff to summon's buff list
//sb_u_p - use player's buff list
//sb_u_s - user summon's buff list
//sb_c_p - clear player's buff list
//sb_c_s - clear summon's buff list
//sb_r_p - recover player's hp/mp/cp
//sb_r_s - recover summon's hp/mp
//sb_d_p - dispel all player's buffs
//sb_d_s - dispel all summon's buffs
//sb_u_mp?name=MACRO_NAME - use macro player
//sb_u_ms?name=MACRO_NAME - use macro summon
//Remote bypasses - can be used in buff coin etc (works without talking with npc)
//sb_r_b_p?id=SKILL_PCH_ID - buff player
//sb_r_b_s?id=SKILL_PCH_ID - buff summon
//sb_r_a_p?id=SKILL_PCH_ID - add buff to player's buff list
//sb_r_a_s?id=SKILL_PCH_ID - add buff to summon's buff list
//sb_r_u_p - use player's buff list
//sb_r_u_s - user summon's buff list
//sb_r_c_p - clear player's buff list
//sb_r_c_s - clear summon's buff list
//sb_r_r_p - recover player's hp/mp/cp
//sb_r_r_s - recover summon's hp/mp
//sb_r_d_p - dispel all player's buffs
//sb_r_d_s - dispel all summon's buffs
//sb_r_u_mp?name=MACRO_NAME - use macro player
//sb_r_u_ms?name=MACRO_NAME - use macro summon
//Setting params description:
//allow_pk - can be used by player killer
//allow_guilty - can be used by flagged player (in pvp mode)
//allow_combat - can be used by player in combat mode
//buff_delay - delay between buffs in miliseconds (used in timer)
//use_delay - flood protection (in ms)
//peacezone_only - if set to 1 players wont be able to use scheme buffer outside peace zone
//allow_cursedweapon - allows cursed weapon owner to use scheme buffer

setting_begin enabled=1    allow_pk=0    allow_guilty=0    allow_combat=0    allow_olympiad=0    allow_cursedweapon=0    use_delay=0    peacezone_only=0    buff_delay=0    low_level_msg=2454    high_level_msg=2455    not_enough_adena_msg=2456    add_to_list_msg=2408    add_to_summon_list_msg=2409    setting_end

//Buff params description:
//pch_id - skill id from skill_pch.txt
//price_id / price_amount - consumed price
//min_level - minimum player level
//max_level - max player level
//abnormal_time - custom buff time
//required_item_id/required_item_amount - not consumed

//s_agit_wind_walk2
buff_begin    pch_id=1111554    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_shield3
buff_begin    pch_id=1112067    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_might3
buff_begin    pch_id=1112323    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_mental_shield4
buff_begin    pch_id=1112580    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_the_body6
buff_begin    pch_id=1112838    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_the_soul6
buff_begin    pch_id=1113094    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_magic_barrier2
buff_begin    pch_id=1113346    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_resist_shock4
buff_begin    pch_id=1113604    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_concentration6
buff_begin    pch_id=1113862    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_berserker_spirit2
buff_begin    pch_id=1114114    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_shield6
buff_begin    pch_id=1114374    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_vampiric_rage4
buff_begin    pch_id=1114628    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_arcane_acumen3
buff_begin    pch_id=1114883    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_empower3
buff_begin    pch_id=1115139    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_haste2
buff_begin    pch_id=1115394    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_guidance3
buff_begin    pch_id=1115651    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_focus3
buff_begin    pch_id=1115907    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_death_whisper3
buff_begin    pch_id=1116163    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_elemental_protection1
buff_begin    pch_id=346113    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_divine_protection1
buff_begin    pch_id=346369    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_arcane_protection1
buff_begin    pch_id=346625    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_advance_block
buff_begin    pch_id=333827    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_wild_magic2
buff_begin    pch_id=333570    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agility3
buff_begin    pch_id=278275    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//dances
buff_begin    pch_id=69377    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_warrior]    buff_end
buff_begin    pch_id=69633    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_inspiration]    buff_end
buff_begin    pch_id=69889    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_mystic]    buff_end
buff_begin    pch_id=70145    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_fire]    buff_end
buff_begin    pch_id=70401    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_fury]    buff_end
buff_begin    pch_id=70657    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_concentration]    buff_end
buff_begin    pch_id=70913    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_light]    buff_end
buff_begin    pch_id=78593    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_aqua_guard]    buff_end
buff_begin    pch_id=79105    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_earth_guard]    buff_end
buff_begin    pch_id=79361    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_vampire]    buff_end
buff_begin    pch_id=79617    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_protection]    buff_end
buff_begin    pch_id=93441    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_siren1]    buff_end
buff_begin    pch_id=93697    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_shadow1]    buff_end
buff_begin    pch_id=93953    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_medusa1]    buff_end
//song
buff_begin    pch_id=67585    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_earth]    buff_end
buff_begin    pch_id=67841    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_life]    buff_end
buff_begin    pch_id=68097    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_water]    buff_end
buff_begin    pch_id=68353    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_warding]    buff_end
buff_begin    pch_id=68609    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_wind]    buff_end
buff_begin    pch_id=68865    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_hunter]    buff_end
buff_begin    pch_id=69121    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_invocation]    buff_end
buff_begin    pch_id=77825    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_vitality]    buff_end
buff_begin    pch_id=78081    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_vengeance]    buff_end
buff_begin    pch_id=78337    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_flame_guard]    buff_end
buff_begin    pch_id=78849    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_storm_guard]    buff_end
buff_begin    pch_id=89345    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_renewal1]    buff_end
buff_begin    pch_id=92929    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_meditation1]    buff_end
buff_begin    pch_id=93185    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_champion1]    buff_end
buff_begin    pch_id=111873    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_silence]    buff_end
//OTHERS
buff_begin    pch_id=1202957    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_queen13]        buff_end
buff_begin    pch_id=1203213    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_gift_of_queen13]            buff_end
buff_begin    pch_id=1203725    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_seraphim13]        buff_end
buff_begin    pch_id=1203981    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_gift_of_seraphim13]            buff_end
buff_begin    pch_id=338689    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_noblesse]        buff_end
buff_begin    pch_id=267009    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_holy_weapon1]        buff_end
buff_begin    pch_id=348929    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_chant_of_victory1]            buff_end
buff_begin    pch_id=346881    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_water1]            buff_end
buff_begin    pch_id=347137    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_fire1]            buff_end
buff_begin    pch_id=347393    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_wind1]            buff_end

 

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • L2 Kings    Stage 1 – The Awakening Dynasty and Moirai Level Cap: 83 Gear: Dynasty -Moirai & Weapons (Shop for Adena + Drop from mobs/instances ) Masterwork System: Available (Neolithics S required with neolithics u can do armor parts foundation aswell) Class Cloaks: Level 1 - Masterwork sets such us moirai/dynasty stats are boosted also vesper(stage 2) Olf T-Shirt: +6 (fails don’t reset) safe is +2 Dolls: Level 1 Belts: Low & Medium Enchant: Safe +3 / Max +8 / Attribution Easy in Moirai-Dynasty . Main Zones: Varka Outpost: Easy farm, Adena, EXP for new players = > 80- 100kk hour Dragon Valley: Main farm zone — , 100–120kk/hour Weapon Weakness System active (all classes can farm efficiently) Archers get vampiric auto-hits vs mobs Dragon Valley Center: Main Party Zone — boosted drops (Blessed enchants, Neolithics chance) => farm like 150-200kk per hour. Dragon Valley North: Spoil Zone (Asofe + crafting materials for MW) Primeval Isle: Safe autofarm zone (low adena for casual players) ==> 50kk per hour Forge of the Gods & Imperial Tomb: Available from Stage 1 (lower Adena reward in compare with Dragon Valley) Hellbound also avaliable from stage 1 In few words all zones opened but MAIN farm zone with boosted adena and drops is Dragon valley also has more mobs Instances: Zaken (24h Reuse) → Instead of Vespers drop Moirai , 100% chance to drop 1 of 9 dolls lvl 1, Zaken 7-Day Jewelry Raid Bosses (7 RBs): Drop Moirai Parts + Neolithic S grade instead of Vespers parts that has 7 Rb Quest give Icarus Weapons Special Feature 7rb bosses level up soul crystals aswell. Closed Areas : Monaster of SIlence, LOA, ( It wont have mobs) / Mahum Quest/Lizardmen off) Grand Epics: Unlocked on Day 4 of Stage 1 → Antharas, Valakas, Baium, AQ, etc ================================================================================= Stage 2 – Rise of Vespers Level Cap: 85 Gear: Moirai Armors (Adena GM SHOP / Craft/ Drop) Weapons: Icarus Cloaks: Level 2 Olf: +8 Dolls: Level 2 Belts: High & Top Enchant: Safe +3 / Max +8 Masterwork can be with Neolithics S84 aswell but higher so craft will be usefull aswell. 7 Raid Boss Quest Updated: Now works retail give vesper weapons 7rb Bosses Drops : Vespers Instances: Zaken : Drops to retail vespers + the dolls and the extra items that we added on stage 1 New Freya Instance: Added — drops vespers and instead of mid s84 weapons will drop vespers . Extra drops Blessed Bottle of Freya - drops 100% chance 1 of 9 dolls. Farm Areas Dragon Valley remains main farm New Zone : Lair of Antharas (mobs nerfed and added drop Noble stone so solo players can farm too) New Party Zone : LOA Circle   ============================================================================   Stage 3 – The Vorpal ERA Gear: Vorpal Unclock Cloaks: Level 3 Olf: +10 (max cap) Dolls: Level 3 Enchant: Safe +3 / Max +12 Farm Zones : Dragon Valley Center Scorpions becomes a normal solo zone (no longer party zone) Drops:   LOA & Knorik → Mid Weapons avaliable in drop New Party Zone Kariks Instances: Easy Freya Drops Mid Weapons Frintezza Release =================================================================================     Stage 4 – Elegia Era (Final Stage) Elegia Unlock Gear: Elegia Weapons: Elegia TOP s84 ( farmed via H-Freya/ Drops ) Cloaks: Level 5 Dolls: Level 3 (final bonuses) Enchant: Safe +6 / Max +16 Instances: Hard Freya → Drops Elegia Weapons + => The Instance will drop 2-3 parts for sure and also will be able to Join with 7 people . Party Zone will have also drop chances for elegia armor parts and weapons but small   Events (Hourly): Win: 50 Event Medals + 3 GCM + morewards Lose: 25 Medals + 1 GCM + more rewards Tie: 30 Medals + 2 GCM + more rewards   ================================================================================ Epic Fragments Currency Participating in Daily Bosses mass rewarding all players Participating in Instances (zaken freya frintezza etc) all players get reward ================================================================================ Adena - Main server currency (all items in gm shop require adena ) Event Medals (Festival Adena) - Event shop currency Donation coins you can buy with them dressme,cosmetics and premium account Epic Fragments you can buy with them fake epic jewels Olympiad Tokens you can buy many items from olympiad shop (Hero Coin even items that are on next stages) Olympiad Win = 1000 Tokens / Lose = 500 Tokens ================================================================================= Offline Autofarm Allows limited Offline farming requires offline autofarm ticket that you get by voting etc ================================================================================= Grand Epics have Specific Custom NPC that can spawn Epics EU/LATIN TIME ZONE ================================================================================= First Olympiad Day 19 December First Heroes 22 December ( 21 December Last day of 1st Period) After that olympiad will be weekly. ================================================================================= Item price and economy Since adena is main coin of server and NOT donation coins we will always add new items in gm shop with adena in order to burn the adena of server and not be inflation . =================================================================================        
    • Hello, I'd like to change a title color for custom npc.  I created custom NPC, cloned existing. I put unique id for it in npcname-e, npcgrp and database. I have "0" to serverSideName in db, so that it would use npcname-e, but instead it has "NoNameNPC"and no title color change.
    • Trusted Guy 100% ,  I asked him for some work and he did it right away.
  • 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