Jump to content

Question

12 answers to this question

Recommended Posts

  • 0
Posted

Hello,

 

please help me ... I wanna make area with block summon skills and Gate Chant. Any1 know how make this zone?

 

L2OFF IL.

 

Thank You.

 

No one can help you with the information: "L2OFF IL" . 

  • 0
Posted

TerritoryData.txt from vanganth actually has some block summoning pc for his own op_cond.

 

but wether that is summon to, or from i dunno, but testing can be done i geuss.

  • 0
Posted

TerritoryData.txt from vanganth actually has some block summoning pc for his own op_cond.

 

but wether that is summon to, or from i dunno, but testing can be done i geuss.

Advext has to something similar as i know.

  • 0
Posted

Advext has to something similar as i know.

// no_wyvern      : blocks usage of wyverns.
// no_ride        : blocks usage of rides such as dragons and wolves for example.
// no_pet         : blocks usage of pets.
// no_summon      : blocks usage of summons.
// is_chaotic     : makes an area of type 'battle_zone' to count pvp points, and also allow these areas to drop the rewards of the pvp extras system
//                  (in case they are limited only to be dropped in chaotic zones at PvpSystem.ini)
// pvp_takexp     : Takes (leech) the experience and sp points of your enemy for yourself when you are doing PVPs (requires is_chaotic flag).
//                  you should use it as : pvp_takexp,perc (perc is a decimal number representing the amount in percentage of xp/sp that will be
//                  taken per PVP from your target/victim.
// dispel_all     : When a player 'teleport to this area' all buffs/debuffs are dispelled.
// protected      : When a player 'teleport to this area' he will be protected for XX seconds or until he performs any action !
//                  you should use it as : protected,time (time is the number in seconds the character will keep protected)
// restore_hp     : restores full hp when the character is 'teleported' to this area.
// restore_mp     : restores full mp when the character is 'teleported' to this area.
// restore_cp     : restores full cp when the character is 'teleported' to this area.
// trade_off      : blocks trading in the area.
// friend_off     : blocks friend invite in the area.
// joinclan_off   : blocks clan inviting in the area.
// party_off      : disable party in the area.
// check_item     : You should use this as : check_item,1000,x,y,z so while the character is 'inside' this area, 
//                  in case he do not have this item he will be automatically teleported outside this area !
// consume_item   : You should use this as : consume_item,1000,x,y,z so while the character is 'inside' this area, it will automatically
//                  consume 1 item per second, in case the character run out of items, he will be automatically teleported outside this area !
// blocked_items  : You should use this as : blocked_items,1300,1301,1302,1303,1304... so when the character join this area, 
//                  he will unequip and won't equip these items again while he inside the area.
// blocked_skills : You should use this as : blocked_skills,1000,1001,1002,1003... so when the character is 'inside' this area,
//                  he will not be able to use these skills.
// min_level      : restrict the area to a minimum required character level.
//                  You should use this as min_level,level,x,y,z so when the character is 'lower' than this level, he will be teleported out !
// max_level      : restrict the area to a maximum required character level.
//                  You should use this as max_level,level,x,y,z so when the character is 'higher' than this level, he will be teleported out !
// race_only      : restrict the area to work only with the specified races in this rule, usage example : race_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other race try to enter in the area, it will be teleported out.
// class_only     : restrict the area to work only with the specified classes in this rule, usage example : class_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other class try to enter in the area, it will be teleported out.
// sex_only       : restrict the area to work only with the specified sex in this rule, usage example : sex_only,sex_id,x,y,z 'sex_id' is the Sex ID from SQL.
//                  In case some other sex try to enter in the area, it will be teleported out.
// door_open      : restrict the area to work only with the specified door open in this rule, usage example : door_open,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is closed, he will be teleported out.
// door_closed    : restrict the area to work only with the specified door closed in this rule, usage example : door_closed,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is open, he will be teleported out.
// not_welcome    : restrict the area to teleport out any player that walks over it, usage example : not_welcome,x,y,z

  • 0
Posted
// no_wyvern      : blocks usage of wyverns.
// no_ride        : blocks usage of rides such as dragons and wolves for example.
// no_pet         : blocks usage of pets.
// no_summon      : blocks usage of summons.
// is_chaotic     : makes an area of type 'battle_zone' to count pvp points, and also allow these areas to drop the rewards of the pvp extras system
//                  (in case they are limited only to be dropped in chaotic zones at PvpSystem.ini)
// pvp_takexp     : Takes (leech) the experience and sp points of your enemy for yourself when you are doing PVPs (requires is_chaotic flag).
//                  you should use it as : pvp_takexp,perc (perc is a decimal number representing the amount in percentage of xp/sp that will be
//                  taken per PVP from your target/victim.
// dispel_all     : When a player 'teleport to this area' all buffs/debuffs are dispelled.
// protected      : When a player 'teleport to this area' he will be protected for XX seconds or until he performs any action !
//                  you should use it as : protected,time (time is the number in seconds the character will keep protected)
// restore_hp     : restores full hp when the character is 'teleported' to this area.
// restore_mp     : restores full mp when the character is 'teleported' to this area.
// restore_cp     : restores full cp when the character is 'teleported' to this area.
// trade_off      : blocks trading in the area.
// friend_off     : blocks friend invite in the area.
// joinclan_off   : blocks clan inviting in the area.
// party_off      : disable party in the area.
// check_item     : You should use this as : check_item,1000,x,y,z so while the character is 'inside' this area, 
//                  in case he do not have this item he will be automatically teleported outside this area !
// consume_item   : You should use this as : consume_item,1000,x,y,z so while the character is 'inside' this area, it will automatically
//                  consume 1 item per second, in case the character run out of items, he will be automatically teleported outside this area !
// blocked_items  : You should use this as : blocked_items,1300,1301,1302,1303,1304... so when the character join this area, 
//                  he will unequip and won't equip these items again while he inside the area.
// blocked_skills : You should use this as : blocked_skills,1000,1001,1002,1003... so when the character is 'inside' this area,
//                  he will not be able to use these skills.
// min_level      : restrict the area to a minimum required character level.
//                  You should use this as min_level,level,x,y,z so when the character is 'lower' than this level, he will be teleported out !
// max_level      : restrict the area to a maximum required character level.
//                  You should use this as max_level,level,x,y,z so when the character is 'higher' than this level, he will be teleported out !
// race_only      : restrict the area to work only with the specified races in this rule, usage example : race_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other race try to enter in the area, it will be teleported out.
// class_only     : restrict the area to work only with the specified classes in this rule, usage example : class_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other class try to enter in the area, it will be teleported out.
// sex_only       : restrict the area to work only with the specified sex in this rule, usage example : sex_only,sex_id,x,y,z 'sex_id' is the Sex ID from SQL.
//                  In case some other sex try to enter in the area, it will be teleported out.
// door_open      : restrict the area to work only with the specified door open in this rule, usage example : door_open,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is closed, he will be teleported out.
// door_closed    : restrict the area to work only with the specified door closed in this rule, usage example : door_closed,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is open, he will be teleported out.
// not_welcome    : restrict the area to teleport out any player that walks over it, usage example : not_welcome,x,y,z

Yes . That

  • 0
Posted
// no_wyvern      : blocks usage of wyverns.
// no_ride        : blocks usage of rides such as dragons and wolves for example.
// no_pet         : blocks usage of pets.
// no_summon      : blocks usage of summons.
// is_chaotic     : makes an area of type 'battle_zone' to count pvp points, and also allow these areas to drop the rewards of the pvp extras system
//                  (in case they are limited only to be dropped in chaotic zones at PvpSystem.ini)
// pvp_takexp     : Takes (leech) the experience and sp points of your enemy for yourself when you are doing PVPs (requires is_chaotic flag).
//                  you should use it as : pvp_takexp,perc (perc is a decimal number representing the amount in percentage of xp/sp that will be
//                  taken per PVP from your target/victim.
// dispel_all     : When a player 'teleport to this area' all buffs/debuffs are dispelled.
// protected      : When a player 'teleport to this area' he will be protected for XX seconds or until he performs any action !
//                  you should use it as : protected,time (time is the number in seconds the character will keep protected)
// restore_hp     : restores full hp when the character is 'teleported' to this area.
// restore_mp     : restores full mp when the character is 'teleported' to this area.
// restore_cp     : restores full cp when the character is 'teleported' to this area.
// trade_off      : blocks trading in the area.
// friend_off     : blocks friend invite in the area.
// joinclan_off   : blocks clan inviting in the area.
// party_off      : disable party in the area.
// check_item     : You should use this as : check_item,1000,x,y,z so while the character is 'inside' this area, 
//                  in case he do not have this item he will be automatically teleported outside this area !
// consume_item   : You should use this as : consume_item,1000,x,y,z so while the character is 'inside' this area, it will automatically
//                  consume 1 item per second, in case the character run out of items, he will be automatically teleported outside this area !
// blocked_items  : You should use this as : blocked_items,1300,1301,1302,1303,1304... so when the character join this area, 
//                  he will unequip and won't equip these items again while he inside the area.
// blocked_skills : You should use this as : blocked_skills,1000,1001,1002,1003... so when the character is 'inside' this area,
//                  he will not be able to use these skills.
// min_level      : restrict the area to a minimum required character level.
//                  You should use this as min_level,level,x,y,z so when the character is 'lower' than this level, he will be teleported out !
// max_level      : restrict the area to a maximum required character level.
//                  You should use this as max_level,level,x,y,z so when the character is 'higher' than this level, he will be teleported out !
// race_only      : restrict the area to work only with the specified races in this rule, usage example : race_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other race try to enter in the area, it will be teleported out.
// class_only     : restrict the area to work only with the specified classes in this rule, usage example : class_only,x,y,z,1,2,3,4... 'numbers' are Race ID from SQL.
//                  In case some other class try to enter in the area, it will be teleported out.
// sex_only       : restrict the area to work only with the specified sex in this rule, usage example : sex_only,sex_id,x,y,z 'sex_id' is the Sex ID from SQL.
//                  In case some other sex try to enter in the area, it will be teleported out.
// door_open      : restrict the area to work only with the specified door open in this rule, usage example : door_open,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is closed, he will be teleported out.
// door_closed    : restrict the area to work only with the specified door closed in this rule, usage example : door_closed,door_name,x,y,z
//                  In case a player walks under this area, and the specified door is open, he will be teleported out.
// not_welcome    : restrict the area to teleport out any player that walks over it, usage example : not_welcome,x,y,z

I dont have Advext ... I have older version I think :/

  • 0
Posted

Hello,

 

please help me ... I wanna make area with block summon skills and Gate Chant. Any1 know how make this zone?

 

L2OFF IL.

 

Thank You.

Assuming you use vanganth files : check territorydata :)

example

begin	territory_id=110	MinX=52000	MaxX=58000	MinY=215500 MaxY=222000 MinZ=-4000	MaxZ=0	Type=BLOCK_SUMMONING_PC	end

  • 0
Posted

Hello,

 

thx all for answering on my post ... I have idea how block it.

 

I hope evryone know this for block private stores in Giran Area... 

 

area_begin name=[giran_town_no_stores1] map_no = {22;22} type=peace_zone blocked_actions={priv_store;priv_rstore} range = {{83844;149373;-3400;48940};{83090;149385;-3464;47220};{83855;147836;-3400;16232};{83097;147857;-3464;16383}} area_end

 

I want make somethink like this but with blocked_actions={invite}

 

anyone tested it? Any experiences?

 

I need set it because if I give anyone to Jail he give party to anyone outside of jail and he summon him from the jail... this is damn ..

 

Thx for any help.

 

 

 

 

 
 
  • 0
Posted

Hello,

 

thx all for answering on my post ... I have idea how block it.

 

I hope evryone know this for block private stores in Giran Area... 

 

area_begin name=[giran_town_no_stores1] map_no = {22;22} type=peace_zone blocked_actions={priv_store;priv_rstore} range = {{83844;149373;-3400;48940};{83090;149385;-3464;47220};{83855;147836;-3400;16232};{83097;147857;-3464;16383}} area_end

 

I want make somethink like this but with blocked_actions={invite}

 

anyone tested it? Any experiences?

 

I need set it because if I give anyone to Jail he give party to anyone outside of jail and he summon him from the jail... this is damn ..

 

Thx for any help.

 

 

 

 

I doubt it shall work....but try it

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

    • SOCNET — is a universal service combining a digital goods store, an SMM panel, and a Telegram bot for purchasing Telegram Stars; here you will find TikTok, Instagram, Reddit, Twitter, Telegram, Facebook, LinkedIn, WhatsApp, SnapChat, YouTube, Google, Discord accounts, emails (Outlook, Hotmail, Gmail, Rambler, Firstmail, and others), access to ChatGPT 5, gift cards, and premium subscriptions to many services — all at the best prices! We are currently actively looking for new suppliers for various product categories, which include: Priority list of positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts (brute or cracked origin, self-regs) with post and comment karma from 100 up to 100,000+ | Full access with email included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010-2023) | Full email access (possibly with attached 2FA password) — Facebook old accounts (2010-2023) | Full email access (possibly with attached 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with attached 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts We are also open to considering other product categories from you, feel free to contact us through the details listed below in this thread! ⚡ Terms of cooperation: ⚡ 1. You prepare a preliminary description of your product 2. We publish your product in our online store and Telegram bots (in both Russian and English). 3. After the product is sold in our stores, we transfer the funds to you by any convenient method within 24 hours from the moment of sale (any cryptocurrency, PayPal, Payeer, TG Stars, and other methods)   ‼ If you have doubts about working with us or are afraid to send the product first, we agree to work through an escrow service of a trusted provider, or you can simply check out the huge base of reviews about our services in this Google document (reviews from our website, Telegram bot, and other platforms where our products are listed). Document ⭐ We invite you to COOPERATE and EARN with us ⭐ Do you want to sell your product or service in our stores and earn money? Become our partner or propose mutually beneficial cooperation? Become our wholesale client and receive the best conditions and discounts? You can contact us through the CONTACTS listed in this thread. We build a reliable partnership network in all areas of online business. We are ready to participate in joint content creation, giveaways, and events! If you work in digital, traffic, accounts, or media and other fields — let’s discuss possible cooperation. We value quality, transparency, and growth. If this resonates with you — write to us, we are open to dialogue! Our current list of partners ⭐ Our contacts ⭐ ➡ Telegram ➡ WhatsApp ➡ Email: solomonbog@socnet.store ➡ Discord: socnet_support ⭐ Our online store ⭐ SOCNET.STORE ⭐ Our Telegram bot for purchasing Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram shop ⭐ SOCNET.SHOP   ✅ News resources ➡ Telegram channel ➡ Discord server ➡ WhatsApp channel
    • SOCNET — is a universal service combining a digital goods store, an SMM panel, and a Telegram bot for purchasing Telegram Stars; here you will find TikTok, Instagram, Reddit, Twitter, Telegram, Facebook, LinkedIn, WhatsApp, SnapChat, YouTube, Google, Discord accounts, emails (Outlook, Hotmail, Gmail, Rambler, Firstmail, and others), access to ChatGPT 5, gift cards, and premium subscriptions to many services — all at the best prices! We are currently actively looking for new suppliers for various product categories, which include: Priority list of positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts (brute or cracked origin, self-regs) with post and comment karma from 100 up to 100,000+ | Full access with email included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010-2023) | Full email access (possibly with attached 2FA password) — Facebook old accounts (2010-2023) | Full email access (possibly with attached 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with attached 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts We are also open to considering other product categories from you, feel free to contact us through the details listed below in this thread! ⚡ Terms of cooperation: ⚡ 1. You prepare a preliminary description of your product 2. We publish your product in our online store and Telegram bots (in both Russian and English). 3. After the product is sold in our stores, we transfer the funds to you by any convenient method within 24 hours from the moment of sale (any cryptocurrency, PayPal, Payeer, TG Stars, and other methods)   ‼ If you have doubts about working with us or are afraid to send the product first, we agree to work through an escrow service of a trusted provider, or you can simply check out the huge base of reviews about our services in this Google document (reviews from our website, Telegram bot, and other platforms where our products are listed). Document ⭐ We invite you to COOPERATE and EARN with us ⭐ Do you want to sell your product or service in our stores and earn money? Become our partner or propose mutually beneficial cooperation? Become our wholesale client and receive the best conditions and discounts? You can contact us through the CONTACTS listed in this thread. We build a reliable partnership network in all areas of online business. We are ready to participate in joint content creation, giveaways, and events! If you work in digital, traffic, accounts, or media and other fields — let’s discuss possible cooperation. We value quality, transparency, and growth. If this resonates with you — write to us, we are open to dialogue! Our current list of partners ⭐ Our contacts ⭐ ➡ Telegram ➡ WhatsApp ➡ Email: solomonbog@socnet.store ➡ Discord: socnet_support ⭐ Our online store ⭐ SOCNET.STORE ⭐ Our Telegram bot for purchasing Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram shop ⭐ SOCNET.SHOP   ✅ News resources ➡ Telegram channel ➡ Discord server ➡ WhatsApp channel
    • sell adena, items, account l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO THE BEST PRICES IN THE WORLD OF LINEAGE 2
    • Can you reupload system patch?
    • he was my customer many years ago, i setup his acp and some statistics on his website, plus some security it is big difference than "friend"   its more dissapointment than hate, take example acis, how many years still development. PS: you know i was selling websites and i still sell donate panels for l2 servers right?
  • 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