Walker Scripts

05/15/2009 00:19 vampirexxx#31
@Garicito
Basic Option... Look at Other Setting..look at down level..then checklist the [ ] Attack NPC

add 2 or 3 npc name,,,, just leave it....

sorry for my bad english :D

================================
Need help for login with L2Net IG..Please
05/16/2009 10:05 Spiderwick#32
Im LF a script to enchant .. ty
05/21/2009 13:49 liak0s#33
Can some1 post script for hot springs quest ?? The one you get the s grade jewels recipes that starts from jeremy in hot springs camp.

Thanx :D
05/21/2009 16:13 boomboy#34
---------------------------------> <----------------------------------------
I think the best thing for ppl to know would be the script commands! E.G. A command to target a mob e.t.c. I know some basic ones from using the REC script button but thats about it.

If knew them all i would right alot of scripts for just about every thing, And ofcorse share them with u all. Does any one have a list of Script commands and there meaning ??I would be very interested Thanks
05/23/2009 13:54 blacksugar#35
Quote:
Originally Posted by boomboy View Post
---------------------------------> <----------------------------------------
I think the best thing for ppl to know would be the script commands! E.G. A command to target a mob e.t.c. I know some basic ones from using the REC script button but thats about it.

If knew them all i would right alot of scripts for just about every thing, And ofcorse share them with u all. Does any one have a list of Script commands and there meaning ??I would be very interested Thanks
[Only registered and activated users can see links. Click Here To Register...]
05/24/2009 08:52 l2imperio#36
im having trouble in my bd sws sync scrypt....
BD
Code:
Label(Start)
!MemberStatus(O nome do seu char,Dance of Fury[ID=275])
UseSkill(Dance of the Vampire[ID=310],SELF)
MemberStatus(O nome do seu char,Song of Warding[ID=267])
UseSkill(Dance of the Warrior[ID=271],SELF)
MemberStatus(O nome do seu char,Song of Hunter[ID=269])
UseSkill(Dance of Fire[ID=274],SELF)
MemberStatus(O nome do seu char,Song of Invocation[ID=270])
UseSkill(Dance of Fury[ID=275],SELF)
Jmp(Start)
SWS
Code:
Label(Start)
MemberStatus(O nome do seu char,Dance of the Vampire[ID=310])
UseSkill(Song of Warding[ID=267],SELF)
MemberStatus(O nome do seu char,Dance of the Warrior[ID=271])
UseSkill(Song of Hunter[ID=269],SELF)
MemberStatus(O nome do seu char,Dance of Fire[ID=274])
UseSkill(Song of Invocation[ID=270],SELF)
Jmp(Start)
where is "O nome do se char" is where i put my main name...

any help?
05/24/2009 11:31 crakchess#37
yours having at fishing script to moved when no fish in spot?
thanks alls
05/27/2009 05:09 jasonvorhes#38
Quote:
Originally Posted by l2imperio View Post
im having trouble in my bd sws sync scrypt....
BD
Code:
Label(Start)
!MemberStatus(O nome do seu char,Dance of Fury[ID=275])
UseSkill(Dance of the Vampire[ID=310],SELF)
MemberStatus(O nome do seu char,Song of Warding[ID=267])
UseSkill(Dance of the Warrior[ID=271],SELF)
MemberStatus(O nome do seu char,Song of Hunter[ID=269])
UseSkill(Dance of Fire[ID=274],SELF)
MemberStatus(O nome do seu char,Song of Invocation[ID=270])
UseSkill(Dance of Fury[ID=275],SELF)
Jmp(Start)
SWS
Code:
Label(Start)
MemberStatus(O nome do seu char,Dance of the Vampire[ID=310])
UseSkill(Song of Warding[ID=267],SELF)
MemberStatus(O nome do seu char,Dance of the Warrior[ID=271])
UseSkill(Song of Hunter[ID=269],SELF)
MemberStatus(O nome do seu char,Dance of Fire[ID=274])
UseSkill(Song of Invocation[ID=270],SELF)
Jmp(Start)
where is "O nome do se char" is where i put my main name...

any help?
I was checking out your script and notice you don't have any DELAY() settings could this be an issue?
05/28/2009 07:16 l2imperio#39
well i figure out that its more complicated than i was thinking...
the problem is that some script commands are broken....
so what i did was make sub rules...
i could test again with sws and bd, but i could make the SWS song just after last song over and in a row...
what i want it a script that makes the bd and sws dance and song like this: D S D S D S ...
i wil try latter but i will do it ....
Edit what i could do is...
SWS
Code:
Label(Start)

!CharBuffs(swsname,Song of Warding[ID=267)
{
Call(warding)
}

Label(back1)

!CharBuffs(swsname,Song of Hunter[ID=269])
{
Call(hunter)
}

Label(back2)

!CharBuffs(swsname,Song of Invocation[ID=270])
{
Call(invo)
}
Jmp(Start)

Label(warding)

!CharBuffs(swsname,Song of Warding[ID=267)
CharBuffs(swsname,Dance of the Vampire[ID=310])
{
UseSkill(Song of Warding[ID=267])
}
Call(back1)

Label(hunter)

!CharBuffs(swsname,Song of Hunter[ID=269])
CharBuffs(swsname,Dance of Fire[ID=274])
{
UseSkill(Song of Hunter[ID=269])
}
Call(back2)

Label(invo)

!CharBuffs(swsname,Song of Invocation[ID=270])
CharBuffs(swsname,Dance of Fury[ID=275])
{
UseSkill(Song of Invocation[ID=270])
}
Return(start)
Jmp(Start)
BD
Code:
Label(Start)
!CharBuffs(BDNAME,Dance of the Vampire[ID=310])
Call(VAMP)
Label(back1)
!CharBuffs(BDNAME,Dance of Fire[ID=274])
Call(FIRE)
Label(back2)
!CharBuffs(BDNAME,Dance of Fury[ID=275])
Call(FURY)
Jmp(start)


Label(VAMP)
!CharBuffs(BDNAME,Dance of the Vampire[ID=310])
!CharBuffs(BDNAME,Song of Invocation[ID=270])
{
UseSkill(Dance of the Vampire[ID=310])
}
Return(back1)

Label(FIRE)

!CharBuffs(BDNAME,Dance of Fire[ID=274])
CharBuffs(BDNAME,Song of Warding[ID=267])
{
UseSkill(Dance of Fire[ID=274])
}
Return(back2)

Label(FURY)

!CharBuffs(BDNAME,Dance of Fury[ID=275])
CharBuffs(BDNAME,Song of Hunter[ID=269])
{
UseSkill(Dance of Fury[ID=275])
}
Return(Start)
jmp(Start)
the error that acour is the bd keep dancing vampire...
i dunno why but i should be right....
any help?