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

    • Do You understand the fact, I won't scam anyone? Can You grasp such idea?  Second of all, if a random restaurant on Google Maps has 599 positive reviews and few negative ones with 4,8* score, do You ask Google to block it's profile and burn the place down? No? Then why the fuck You are crying about my random delays? If someone can't get a CUSTOM DESIGN on time, I refund. I'm not 16  y.o. anymore. I don't make living out of this L2 bullshit. Never did. Since 2012 I've made shit tons of projects. How many delays did I have? 12? 15? Out of hundrets of projects. Calm Your tits please. If I would actually take 4k euro and NOT deliver and NOT refund - admins can ban me. So don't compare me to Simple. And just so You know, Celestine sent me customers, so it's not like I've worked with him on his account all the time. That's another thing You won't understand. I won't waste anymore time on You and any other cunt who never was my customer but is bitching just because he has nothing better to do in his life. You don't like my work? Hove along, I don't give a shit. 
    • So he's like unsimple you would say? Cherry picking who's getting scammed.   Deliver 5 projects, don't deliver/delay the other 2 projects. Of course he won't scam you because he know what's gonna happen after since he's dealing with the admin himself.
    • I've worked with Ave a lot lately on designs and other projects. He has always delivered as quickly as possible sometimes within a week, maybe two. Personally, I’m patient, so I’ve never had an issue with the wait. I’m not trying to defend him blindly, but I genuinely don’t believe he would mess someone over for €60 €100. Sometimes he's inactive, likely due to real life responsibilities, but I don't judge everyone has their own situations. I understand that some people are impatient and want their orders completed quickly, but considering the quality of his work, I have no problem waiting. Of course, people react differently to delays, and that’s fair. But in my experience, I can't call him a scammer he's always delivered what I ordered.
    • Good day. Our game currency store is looking for suppliers of adena and items on a project such as L2REBORN x10. We also sell Epic jewelry and various items on this project L2REBORN x10. There are items and adena on L2REBORN x1. For all questions, write to us in discord - goddardshop
  • Topics

×
×
  • Create New...