Jump to content

[Scripts] Dwarf delevel and Tateossian Recipe Quest


Recommended Posts

Posted

Script: Dwarf delevel:

Start city: Oren any place inside it.

Char: Dwarf

Inventory: only a no grade blunt (anything else at inventory may u drop at guards)

 

Tested on Dragon15x server from dragon-network.

// DWARF DELEVEL SCRIPT BY ADLERBR
// START AT OREN CITY
// NEED EQUIP ANY NO GRADE BLUNT 
// MAKE SURE YOU DONT HAVE ANY OTHER ITEMS AT INVENTORY
// 
//
LABEL(START)
// Check The LVL
//
CharStatus(LV,<=,40) //>>> YOU CAN CHANGE THE LEVEL HERE
{
EXIT()
}
CharStatus(CHP,==,0)
{
JMP(DIED)
}
//
// Square 1
// Spawn Near Oren GateKeeper
//
POSINRANGE(82593,53795,-1496,800)
{
MOVETO(81600,53471,-1496)
MOVETO(81051,53436,-1544)
JMP(GOMOUEN)
}
//
// Square 2
// Spawn Near Oren Manager
//
POSINRANGE(82680,55770,-1520,800)
{
MOVETO(81595,55513,-1520)
JMP(GOSTAN)
}
//
// Square 3
// Spawn Near Sir Gustaf
POSINRANGE(80329,56121,-1560,800)
{
MOVETO(80355,55410,-1560)
MOVETO(80367,54336,-1560)
JMP(GOJERIN)
}
//
// Square 4
// Spawn Near Weapon Shop
//
POSINRANGE(80143,53208,-1560,800)
{
MOVETO(80578,53917,-1560)
JMP(GOJERIN)
}
//
// Move Near to Stan
//
LABEL(GOSTAN)
MOVETO(81606,56228,-1520)
UseSkill(Stun Attack,NPC,Stan)
Delay(10000)
CharStatus(CHP,>,0)
{
CALL(GOSTAN)
}
JMP(DIED)
//
// Move Near Jerin
//
LABEL(GOJERIN)
MOVETO(79699,54340,-1560)
USESKILL(STUN ATTACK,NPC,Jerin)
DELAY(10000)
CharStatus(CHP,>,0)
{
CALL(GOJERIN)
}
JMP(DIED)
//
// Move Near Mouen
//
LABEL(GOMOUEN)
MOVETO(80918,53071,-1560)
USESKILL(STUN ATTACK,NPC,Mouen)
DELAY(10000)
CharStatus(CHP,>,0)
{
MOVETO(81087,53064,-1586)
USESKILL(STUN ATTACK,NPC,Hector)
DELAY(10000)
}
CharStatus(CHP,>,0)
{
CALL(GOMOUEN)
}
JMP(DIED)
//
// Died go Home
//
LABEL(DIED)
CharStatus(CHP,==,0)
{
GoHome(0)
}
Delay(5000)
Call(START)

 

 

[]s

AdlerBR

 

Script: Egg Delivery (tateossian recipes - S Grade Jewels)

Char: Dagger lvl 68+

Start: HotSprings NPC jeremy

Inventory: some mana pots (200) and haste pots (20)

OBsevation: Set silent move as a buff with auto detetion at walker buffs sets

 

Tested on Dragon15x Server from Dragon-network

May You need change the NPC names or/and conversation texts to work at other servers.

And this is the best part: If your server goes down, u need just load/start again the script and the script will detect how many quest items u have and continue the quest... :)

 

 

//
//>>> Script Quest Egg Delivery
//>>> Versao 1.2b By AdlerBR
//
//>>> Use Dagger Level 68+
//>>> Noob Equips  (if u die u drop shit)
//>>> 300 mana pots (normal mana) + 20 Haste Pots
//>>> At Walker Buffs Sets:
//>>> Silent Move (autodetect and any delay) and Haste Pots (delay 20 min)
//
//
Label(START)
//>>> Starting the Quest at NPC Jeremy
//>>> AT hotsprings
//
//
//  Recharge MANA 1
//
CharStatus(MP,<,80)
{
Label(MANA1)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA1)
}
}
// VERIFY QUEST STATUS
ITEMCOUNT(Boiled Eggs[iD=7195],==,0)
{
JMP(JEREMY)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,0)
{
JMP(PULIN)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,1)
{
JMP(NAFF)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,2)
{
JMP(CROCUS)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,3)
{
JMP(KUBER)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,4)
{
JMP(BEORIN)
}
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,5)
{
JMP(JEREMY2)
}
LABEL(JEREMY)
ITEMCOUNT(Fee of Boiled Egg[iD=7196],==,5)
{
JMP(JEREMY2)
}
MOVETO(149560,-112680,-2064)
NPCSEL(Jeremy)
DELAY(2000)
NPCDLG(Jeremy) 
DELAY (2000) 
DLGSEL( Quest ) 
DELAY(2000) 
DLGSEL([Egg Delivery])
DELAY(2000)
DLGSEL("I'll deliver your eggs.")
//
// RECHARGE MANA 2
//
CharStatus(MP,<,80)
{
Label(MANA2)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA2)
}
}
//
//
//>>>> MOVE TO NPC PULIN
//
LABEL(PULIN)
MOVETO(150877,-115124,-1664)
MOVETO(155833,-115308,-1624)
MOVETO(157609,-115361,-1904)
NPCSEL(Pulin)
DELAY(1500)
NPCDLG(Pulin)
DELAY(1500)
DLGSEL(Quest)
DELAY(1500)
DLGSEL("I've got some Boiled Eggs for you.")
DELAY(1500)
//
// Verify quest item
//
ITEMCOUNT(Fee of Boiled Egg[iD=7196],<=,0)
{
Call(PULIN)
}
//
// RECHRAGE MANA 3
//
CharStatus(MP,<,80)
{
Label(MANA3)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA3)
}
}
//
//>>>> MOVE TO NPC NAFF
//
LABEL(NAFF)
MOVETO(156807,-114471,-1784)
MOVETO(156268,-112231,-1832)
MOVETO(156795,-110232,-2576)
MOVETO(156055,-107213,-2624)
MOVETO(155494,-106467,-2648)
//
//START CONVERSATION
MOVETO(155613,-105737,-2752)
NPCSEL(Naff)
DELAY(1500)
NPCDLG(Naff)
DELAY(1500)
DLGSEL(Quest)
DELAY(1500)
DLGSEL("I have some Boiled Eggs for you!")
DELAY(1500)
//
// Verify quest item
//
ITEMCOUNT(Fee of Boiled Egg[iD=7196],<=,1)
{
Call(NAFF)
}
//
// RECHARGE MANA 4
//
CharStatus(MP,<,80)
{
Label(MANA4)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA4)
}
}
//
// MOVE TO CROCUS
//
LABEL(CROCUS)
MOVETO(155197,-106371,-2712)
MOVETO(153794,-102691,-2976)
MOVETO(151878,-101317,-2896)
MOVETO(146861,-101189,-3080)
//
// START CONVERSATION
LABEL(CROCUS)
MOVETO(140700,-105466,-3632)
NPCSEL(Crocus)
DELAY(1500)
NPCDLG(Crocus)
DELAY(1500)
DLGSEL( Quest)
DELAY(1500)
DLGSEL(I've got your eggs right here.)
DELAY(1500)
//
// Verifica quest item
//
ITEMCOUNT(Fee of Boiled Egg[iD=7196],<=,2)
{
Call(CROCUS)
}
//
// RECHARGE MANA 5
//
CharStatus(MP,<,80)
{
Label(MANA5)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA5)
}
}
//
// MOVE TO NPC KUBER
//
LABEL(KUBER)
MOVETO(141114,-107069,-3616)
MOVETO(141825,-108229,-3560)
MOVETO(141661,-109395,-3592)
NPCSEL(Kuber)
DELAY(1500)
NPCDLG(Kuber)
DELAY(1500)
DLGSEL( Quest)
DELAY(1500)
DLGSEL("Egg delivery, sir!")
DELAY(1500)
//
// Verify quest item
//
ITEMCOUNT(Fee of Boiled Egg[iD=7196],<=,3)
{
Call(KUBER)
}
//
// RECHRAGE MANA 6
//
CharStatus(MP,<,80)
{
Label(MANA6)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA6)
}
}
//
// MOVE TO BEORIN
//
LABEL(BEORIN)
MOVETO(145503,-111134,-3400)
MOVETO(146590,-111665,-2416)
MOVETO(147519,-113278,-3592)
NPCSEL(Beorin)
DELAY(1500)
NPCDLG(Beorin)
DELAY(1500)
DLGSEL(Quest)
DELAY(1500)
DLGSEL(I've got your eggs right here.)
DELAY(1500)
//
// Verify quest item
//
ITEMCOUNT(Fee of Boiled Egg[iD=7196],<=,4)
{
Call(BEORIN)
}
//
// RECHARGE MANA 7
//
CharStatus(MP,<,80)
{
Label(MANA7)
USEITEM(Mana Potion[iD=728])
DELAY(30000)
CharStatus(MP,<,90)
{
Call(MANA7)
}
}
//
// RETURN  TO JEREMY
//
LABEL(JEREMY2)
MOVETO(149218,-112460,-2072)
MOVETO(149560,-112680,-2064)
NPCSEL(Jeremy)
DELAY(1500)
NPCDLG(Jeremy) 
DELAY (1500) 
DLGSEL( Quest ) 
DELAY(1500) 
DLGSEL([Egg Delivery (Continue)])
DELAY(2000)
DLGSEL("I made all the deliveries.")
//
// RESTART THE QUEST
//
DELAY(5000)
Call(INICIO)

 

u can download this scripts and more scripts from my virtual drive at: http://adlerbr.4shared.com

 

Enjoy it  ;)

 

Adler

Posted

Thx man :)

 

In next fell days im posting some new myself made Flash-Tutorials, but i need change my winXP to english (better to all people understand it). Im Brazilian and my winXP is in Brazilian-Portuguese. Im finishing the winXP-english.ISO download at emule  :):):)

 

Best Regards,

 

AdlerBR

Posted

Really nice scripts, gonna test later on... I normally delevel in Gludio with only dead return + attack npc, but in Oren it gets stuck without pathpoints, plus it wouldn't use stun without a script. Yay.

 

PS: same country as you are, hehe.

  • 2 weeks later...
Posted

i konw its old topic but i have some question for using this scripts, because is not working for me ;/

 

about dwarf delevel script. what i do wrong???

-i copy this script to some file

-loging on dwarfi in oren

-form Script options in l2w i selecet the file

-press Script Run  ........... and dwarf do nothing

 

of couse i change the line:

CharStatus(LV,<=,40) //>>> YOU CAN CHANGE THE LEVEL HERE

 

to (i have 12lvl on spoil)

 

CharStatus(LV,<=,10) //>>> YOU CAN CHANGE THE LEVEL HERE

 

and still dont work ;/

what i do wrong or what more option i need mark in l2w??

Posted

//>>> YOU CAN CHANGE THE LEVEL HERE    <= try to delete this text,

in next step (if that doesnt help) look at script and look what ur dorft is doing. u will see in what moment of script something is not good...

sorry for my bad english,

give a sign if i help/dont help

Posted

//>>> YOU CAN CHANGE THE LEVEL HERE    <= try to delete this text,

in next step (if that doesnt help) look at script and look what ur dorft is doing. u will see in what moment of script something is not good...

sorry for my bad english,

give a sign if i help/dont help

i'll try it. but for now my dwarf dont move ;/

is no action when i start this script ;( maybe i wrogn start this script

 

Posted

Did you copy the script, pasted into notepad, saved on /script/ and tried to run? 2 things could've happened.

a) the filename must be .SEC (uppercase) or it won't work;

b) sometimes (I have NO IDEA why since txt has no text format) it doesn't work if you make/paste the script outside L2W. try pasting the script in the "script make" tab and save it (like delevel.SEC).

 

The script works flawlessly for me. :D

Posted

ok, thx for help. now ist working for me :D

what i do wrong?? .... i copy the script and paste to file create in notepad with .SEC - i dont no why its not working. now i go to l2w, creat script, paste ther script and save :D and its working fint.

one more thx

 

btw now i have 1 more question ;p

i try create some own scrypt ... and have some problems.

ok if script is like:

 

 

LABEL(START)

CharStatus(CHP,==,0){

xxx /some method

JMP(START)

}

yyy /another method

JMP(START)

 

so if i die script should do xxx - method and go to START, if i live do yyy - method and jump to START. yes???

so why if i live scrypt do xxx method?????????

what is wrong???

 

 

btw: dont wont new topic, because i need 1 simpe answer :D

 

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.




  • Posts

    • L2Lusty 50x Essence High Version Open day 27/06  12:00 GMT London WebSite: https://l2lusty.com/ General Information If you are looking for a High Five retail server, this project is not for you, our gameplay and farming system is based on the Essence version. If you are looking for something new and different to play, this server is for you. Our server is using its own version that mixes High Five and the latest Essence version. With this, we have a good part of the items from the Lineage2 Essence version, with classes and bosses from High Five. An auto-balance system in onlympiad games, which will bring greater equality in combats. We added the Chaos Zone and Peace Zone events, for a better LCoin farm, these events are 24h and can be accessed with the commands .chaos or .peace. All essence items are purchased in our alt+b and cost an average of 300k LCoins. LCoins are obtained by killing any mob, with better drops in the Chaos zone and the Peace Zone. Server Version High Five + Essence Game Play Experience 50x Spoil 8x Drop 8x Adena 8x Normal Enchant 50% (+3 to +12) (40% 12 to 20) Blessed Enchant 50% (+3 to +12) (40% 12 to 20) Safe Enchant +3 Max Enchant +20 Max Windows / IP 6 Accounts Anti-Bot system ON Champions System ON TerritoryWar Saturday 20:00 Siege Every Sunday Olympiads 18:00 / 23:50 Oly End Days 1, 11 and 22 Max Register 1 For IP Minimum Players for Start 4 Players Subclass FREE MAX LVL 85 SHOP GRADE-S Party Diff 30 Level 55/85   Essence Items Price   Items Lvl 1 300k / 1.200kk LCoins Upgrade to Lvl 2 2 items Lvl 1 + 2b Adenas Upgrade to Lvl 3 2 items Lvl 2 + 2b Adenas Upgrade to Lvl 4 2 items Lvl 3 + 2b Adenas Upgrade Chance 25%   Exchange Items   As in other MMORPGs, we have a system of exchanging items for better items.       GrandBoss All Grand Boss Time Fixed Raids Status 50% Change Drop Queen Ant / Core / Orfen / Baium Queen ant Level: 80 Every day 18:30 / Drop Jewel 40% Core Level: 80 Every day 18:40 / Drop Jewel 90% Orfem Level: 80 Every day 18:50 / Drop Jewel 90% Baium Level: 80 Every Friday 18:00 / Drop Jewel 100% Beleth Every Friday 22:00 / Drop Jewel 100% Valakas Every Saturday 18:00 / Drop Jewel 100% Antharas Every Sunday 17:00 / Drop Jewel 100% Max Character in Zone Boss 1 For IP   Instances Party All Intances 5 Players Raids Status 50% Zaken Day 61 5 Players / Jewel Chance 10% Zaken Day Hard 83 5 Players / Jewel Chance Normal / 10% / Blessed 1.9% Zaken Nightmare 61 5 Players / Jewel Chance 90% Frintezza 5 Players / Jewel Chance 40% Freya Normal 5 Players / Jewel Chance 40% Freya Hard 5 Players / Jewel Chance 40% Tiat 5 Players / Weapon Chance 10%   Instances Solo   All Intances Drop S84 Up Crystal Level 10 / 17 Baylor Solo Drop Moirai Set / Vesper Weapons Darion Solo Weapon Chance 1% Tiat Solo Weapon Chance 1% Frintezza Solo Jewel Chance 2% Freya Solo Jewel Chance 2% Zaken Solo Jewel Chance 2% Core Solo Jewel Chance 2% Orfen Solo Jewel Chance 2% Beleth Solo Jewel Chance 1%   Special Events Event Boss Lindvior Every day 16:40 - 22:40 Event Pig Invazion Every day 15:40 - 23:40 Event Dragon Invazion Every day 18:40 - 01:40 Event City War Every day 19:40 - 02:40   Commands .ach .achievements Opens the achievements interface .buffshield (anti-buff) .away .back (stay away / back) .menu .cfg (Character control panel) .combine .talisman (Combine all Talismans) .dressme (Visual Armor Added +1000 HP) .party .invite .partylist Our custom party creation system .offline (off line shop) .repair (repair character) .siege (See the siege time or register your clan) .stats (character status)   .offbuff (Open store buffs) .autofarm (Open Auto Farm Interface) .report (Report a suspicious bot player) .buffshop (Invoke a summon to sell your buffs.) .vote (Opens our vote system.) .aa (Exchange your seal stones for AA automatically.) .oly (Shows all players who are first in the oly ranking.) .status (See a player's status, he has to be in your target) .seeres (Look at a player's resistance, he has to be in his target) .equip (See all of a player's items, they have to be in their target) .regoly (Register with oly wherever you are.) .bagclean Delete all items from your inventory, use it knowing that you will lose everything that is not equipped!   WebSite: https://l2lusty.com/
    • Our sales are ongoing. Bump. 22 June 2025 Telegram: ContactDiscordAccS
  • 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