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

 

 

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
Reply to this topic...

×   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.



×
×
  • 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