Jump to content

Recommended Posts

Posted

Very nice guide, I think that new users should read guide like this to learn what can walker do or not. I'm sick of ppl who thinks walker is a cheat that can lvl up you from lvl 1 to 80 just pressing 1 button and they start asking you how to activate the cheat and I have to tell them that it's not a f****** cheat, it's just a bot and then they ask: "What does a bot do" and then I click delete + block contact =)

 

You should add that it would be easier with IG Walker with the script make function.

+1 Sticky from me

Posted

nice guide...

is it possible to make some script to use automatically cp potions? i have already made a mana script and it works fine... but on cp he just stays  spamming cp potions like hell, even when my cp is 100%... and i know my script is correct cause it works on mana potion...

any idea?

thanks

Posted

Making walker for dragon network isnt so good idea :P i preffer game without walker ;)

 

This is SPAM. This is a guide of how to make scripts.

Nobody talk about DN so if u don't like walkers or hacks just leave the forum.

This topic has nothing to do with making walkers. It's just a guide.

  • 3 weeks later...
Posted

I was just needing this, I must get a script for frenzy, zealot and battle roar, still, even with the guide it doesn't look very easy to make, but slowly I'll get there, must read the guide again and again anyway.

 

Thank you for sharing even it not being yours.

  • 2 weeks later...
Posted

Live example!

 

I create it and leveling a tank in gludio 16-24.

 

Requiriments: Char in center of gludio town.

200 Healig Pots

Top No Grade

 

Set Patching L2Walker: define patchpoint and use Healing Pots if HP < 30%.

 

LABEL(start)
SET(L2WALKER,DISABLE)
SET(FIGHTSTOP)
MOVETO(-14251,123654,-3143)
MOVETO(-14251,123654,-3143)
MOVETO(-14251,123654,-3143)

//GROCERY
MOVETO(-14305,124183,-3143)
MOVETO(-14529,124572,-3149)
MOVETO(-14622,124626,-3112)
MOVETO(-14681,124626,-3140)
MOVETO(-14817,124512,-3140)

//CHECK SOULSHOT
ITEMCOUNT(Soulshot: No Grade[iD=1835],<=,1000)
{
NPCSEL(Harmony[iD=30254])
NPCDLG(Harmony[iD=30254])
DLGSEL(Buy Consumables and Minerals )
BUYITEM(Soulshot: No Grade[iD=1835],6000;)
}

//CHECK RECOVERY NO GRADE
LABEL(pen)
ITEMCOUNT(Scroll: Recovery[iD=8594],<,1)
{
NPCSEL(Harmony[iD=30254])
NPCDLG(Harmony[iD=30254])
DLGSEL(Buy Consumables and Minerals )
BUYITEM(Scroll: Recovery[iD=8594],1;)
}

//CHECK RECOVERY GRADE D
LABEL(pen2)
ITEMCOUNT(Scroll: Recovery[iD=8595],<,1)
{
NPCSEL(Harmony[iD=30254])
NPCDLG(Harmony[iD=30254])
DLGSEL(Buy Consumables and Minerals )
BUYITEM(Scroll: Recovery[iD=8594],1;)
}

//RETURN CENTER
LABEL(center)
MOVETO(-14877,124265,-3140)
MOVETO(-14930,124082,-3112)
MOVETO(-14903,123962,-3143)
MOVETO(-14484,123778,-3143)
MOVETO(-14347,123637,-3143)
CALL(buff)

//BUFFS
LABEL(buff)
MOVETO(-14290,123223,-3143)
MOVETO(-14197,122698,-3143)
MOVETO(-14140,122222,-3016)
MOVETO(-13975,121996,-3015)
NPCSEL(Newbie Guide[iD=31077])
NPCDLG(Newbie Guide[iD=31077])
DLGSEL(Check the list of available Support Magic.)
DLGSEL(Receive support magic.)
DELAY(4000)
MOVETO(-14159,122191,-3015)
MOVETO(-14155,122492,-3143)
MOVETO(-14256,122913,-3143)
MOVETO(-14304,123404,-3143)
MOVETO(-14274,123548,-3143)

//RUN
LABEL(spot)
MOVETO(-14100,123640,-3143)
MOVETO(-13569,123664,-3143)
MOVETO(-12884,123656,-3143)
MOVETO(-12236,123645,-3128)
MOVETO(-11264,123810,-3068)
MOVETO(-10153,123885,-3060)
MOVETO(-9364,123890,-2924)
MOVETO(-8545,123888,-2898)
MOVETO(-7344,123868,-3059)
MOVETO(-6887,122789,-3060)
MOVETO(-6889,121557,-3104)
MOVETO(-6786,120701,-3128)

//PATCHPOINTS
LABEL(setpatch)
SET(DEFRANGE,CLEAR)
SET(DEFPATH, CLEAR) 
Set(RANGETYPE, DEFPATH) 
SET(DEFPATH,ADD,-6505,122823,-3032,2500)
SET(DEFPATH,ADD,-6201,118077,-3312,2500)
SET(DEFPATH,ADD,-4568,116429,-3344,1500)
SET(DEFPATH,ADD,-6806,115934,-3312,1500)
SET(DEFPATH,ADD,-5366,114948,-3344,2000)
SET(L2WALKER,ENABLE)
SET(FIGHTSTART)

//LIVE?
LABEL(live)
DELAY(50000)
CharStatus(CHP,<=,0)
{
DELAY(1000)
GOHOME()
DELAY(10000)
SET(L2WALKER,DISABLE)
SET(FIGHTSTOP)
MOVETO(-14251,123654,-3143)
MOVETO(-14251,123654,-3143)
USEITEM(Scroll: Recovery[iD=8595])
USEITEM(Scroll: Recovery[iD=8594])
CALL(start)
}
CALL(live)

 

Click Run and leveling!

A good choice is buy a lot of seeds and set Walker for harvest.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • Hi, great work! Are there any bugs? And will it work with a high five?
    • For others that would like to understand in more details:   The login server also uses a protocol (sent by the server to the client in the very first packet). For instance, the C4 client (the one I'm developing my emulator for) expects the protocol number `50721` (or `0xc621`) which works as follow (from what I've gathered): Preamble: L2 packets are divided into two parts: size and payload; As mentioned, every packet starts with two bytes containing the whole packet size (thus including those two bytes, e.g. a packet of size 15 will have the number `15` written onto its first two bytes and a following payload of 13 bytes); For login server, first byte of the payload is the opcode (game server must deal with variable-sized opcodes); Next bytes are the packet content; Before sending the packet, its buffer size (minus the initial two bytes) is padded to 8 bytes (required by upcoming Blowfish encoding); A checksum of the packet is appended at the end, then the payload is again padded to 8 bytes; If the opcode is not `0` (also written as `0x00`), then the payload is encoded by Blowfish; Packet is sent over the network. You can have a look at my implementation (in C++) here (do note I'm assuming little-endian).   In this protocol, the auth packet (`0x00`) sent back by the client is RSA encrypted using the RSA modulus sent in the first server packet, inserted right after the protocol number.  
    • Hello guys I wanna buy some  Lessons for an L2J Developer
    • Let me give you something for inspiration and get you addicted to bot AI     And a siege 😛     What I have notice helps a lot the LLM to act real, is to give it a real-persons background. So for each LLM in the context beggining, besides the L2 facts, give it a real-life back story "You are a 67 years old retired nurse who plays Lineage 2 while her husband reads his newspaper, you are calm, collected but get mad if insulted". But that makes for a creative bot but its repetitive. So what you can also do, is pick random 20 news sites and for each bot every 2-3 days, initialize a context that is affected by the "news" the bot reads in the "real world".  So for example there's Iran - US war ok ? You take the news, put it in an LLM and ask it, extract the "abstract feelings" that this news piece invokes into you without mentioning anything related to the news. Then you take the result and inject it to the bots LLM prompt after its backstory.  This leads to some VERY human-like behavior from bots. 
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..