Scroll of escape location.

This is not a Support area! Discuss about the Server here. Non-Server related discussion goes in Off-Topic Discussion.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
aggonn
Posts: 67
Joined: Wed Jun 25, 2008 6:23 am

Scroll of escape location.

Post by aggonn »

Hello,

I want to change the location of a
"Blessed Scroll of Escape (Event)"

Code: Select all

            case 9156: // Blessed Scroll of Escape (Event)                useSkill(activeChar,2320,1);                break;
in the handler I found this code, but where can I find/change the location?
aggonn
Posts: 67
Joined: Wed Jun 25, 2008 6:23 am

Re: Scroll of escape location.

Post by aggonn »

bump :P anyone knows this?
User avatar
Bloodshed
L2j Veteran
L2j Veteran
Posts: 816
Joined: Mon Jun 23, 2008 9:54 am
Location: Dorf Town

Re: Scroll of escape location.

Post by Bloodshed »

overwrite the skill ID 2320 in skills folder with this :)

this one has set bsoe speed and loc is somewhere on giran warehouse :P

Code: Select all

<skill id="2320" levels="1" name="Blessed Scroll of Escape - Event Use">  <set name="itemConsumeId" val="9156"/>  <set name="itemConsumeCount" val="1"/>  <set name="target" val="TARGET_SELF"/>  <set name="hitTime" val="200"/>  <set name="staticHitTime" val="true"/>  <set name="skillType" val="TELEPORT"/>  <set name="teleCoords" val="83005,147046,-2984"/>  <set name="operateType" val="OP_ACTIVE"/></skill>
taking a break;
aggonn
Posts: 67
Joined: Wed Jun 25, 2008 6:23 am

Re: Scroll of escape location.

Post by aggonn »

aahh oke thx ;)
Post Reply