Jump to content

Tts Adrenaline Script - Edit


garfild

Recommended Posts

Hey guys,

I would like to ask you a question regarding to script. I play on L2warland (retarded l2j with security). I want to make tts script and I found problem:

When I reach NPC, I can not delivery egg. 

 

this is working, so bypasstoserver is working correctly

engine.bypasstoserver('_bbshome');

this is dialogue

<html><body>Naff:<br>
Oh, that feels great! If only I had some boiled eggs to go with it!<br>
<a action="bypass -h Quest 621_EggDelivery 31544-1.htm">I have some boiled eggs for you!</a>
</body></html>

so I used

engine.bypasstoserver('bypass -h Quest 621_EggDelivery 31544-1.htm');

tried _bypass, without bypass but nothing happend. I tried also

Engine.DlgOpen('I have some boiled eggs for you!');

not working

 

 

Do you have any idea? thanks!

Link to comment
Share on other sites

Hey guys,

I would like to ask you a question regarding to script. I play on L2warland (retarded l2j with security). I want to make tts script and I found problem:

When I reach NPC, I can not delivery egg. 

 

this is working, so bypasstoserver is working correctly

engine.bypasstoserver('_bbshome');

this is dialogue

<html><body>Naff:<br>
Oh, that feels great! If only I had some boiled eggs to go with it!<br>
<a action="bypass -h Quest 621_EggDelivery 31544-1.htm">I have some boiled eggs for you!</a>
</body></html>

so I used

engine.bypasstoserver('bypass -h Quest 621_EggDelivery 31544-1.htm');

tried _bypass, without bypass but nothing happend. I tried also

Engine.DlgOpen('I have some boiled eggs for you!');

not working

 

 

Do you have any idea? thanks!

bypass string you need use without "bypass -h" example 

engine.bypasstoserver('Quest 621_EggDelivery 31544-1.htm');
Link to comment
Share on other sites

check for bypass string like u did before

sorry, I do not understand. I used script and HxD to get dialogue from Naff and same for alt+b buff. I do not know how to findout engine.bypasstoserver, I made just try/fail method.

Link to comment
Share on other sites

sorry, I do not understand. I used script and HxD to get dialogue from Naff and same for alt+b buff. I do not know how to findout engine.bypasstoserver, I made just try/fail method.

on most of servers bypass needed only for accept quest, to press "Quest", "Egg Delivery" i guess u can use engine.dlgsel and only on accept quest use engine.bypasstoserver with bypass string, ofc dont forget little bit delay before bypasstoserver

Link to comment
Share on other sites

on most of servers bypass needed only for accept quest, to press "Quest", "Egg Delivery" i guess u can use engine.dlgsel and only on accept quest use engine.bypasstoserver with bypass string, ofc dont forget little bit delay before bypasstoserver

this is exactly what I tested and I can not make last step. As you said proably engine.bypasstoserver is not working with this dialogue (but with engone.bypasstoserver _bbshome is working). And at the moment I do not know how to contunie. Is it possible that bypasstoserver is different only for dialogues? 

Link to comment
Share on other sites

this is exactly what I tested and I can not make last step. As you said proably engine.bypasstoserver is not working with this dialogue (but with engone.bypasstoserver _bbshome is working). And at the moment I do not know how to contunie. Is it possible that bypasstoserver is different only for dialogues? 

well no idea what u try there but probably cant be easier

begin
engine.settarget('naff');
engine.dlgopen; delay(555);
engine.dlgsel('Quest');delay(555);
engine.bypasstoserver('Quest 621_EggDelivery 31544-1.htm');delay(555);
end.
Link to comment
Share on other sites

 

well no idea what u try there but probably cant be easier

begin
engine.settarget('naff');
engine.dlgopen; delay(555);
engine.dlgsel('Quest');delay(555);
engine.bypasstoserver('Quest 621_EggDelivery 31544-1.htm');delay(555);
end.

well,its working, Iam looks like an idiot. The delay on the end is important?

Link to comment
Share on other sites

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

    • Welcome to my store : https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 60.99 $ 2016 Discord Account : 10.50 $ 2017 Discord Account :4.99 $ 2018 Discord Account : 3.99 $ 2019 Discord Account : 2.99 $ 2020 Discord Account :1.99$ 2021 Discord Account :1.50$ 2022 Discord Account :0.99$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore11 Whatsapp ; +212614849119
    • The heavy lifting is done in the client, because while you can get away with small imperfections in the java, everything in the client must be impecable. So, if you haven't touched the client, I'd say pick the newest protocol version you can find the client editing tools and Interface.u (mandatory) / NWindow.dll (better to have it) / Engine.dll (optional) sources for. At the very least, you need the Interface.u to fix the Clan Window and enable skill enchanting on Classic/Essence versions, if you decide to use one of them instead of MAIN/LIVE.
    • Thanks for clarification. Do you think the newest clients offer solid advantages compared to the classic ones like Salvation? I'm also in the process of porting h5 to one of them just for the sake of it, so I was wondering if I should just attempt to go to the newest possible.
    • Upgrading to Salvation is exactly the same as upgrading to the newest client with the only difference being access to free-shared client editing tools and resources. I am speaking from experience. I have upgraded my HF source to one of the newest clients by myself (in terms of server side. got help with the client) and hit every single wall there was in the process. Now, I already have several multi-protocool server cores so I can easily compare different approaches to tackling the same issue, which also helped the learning process. Best way to learn would be to use this one (link below) to snoop around and figure out what has been changed in the server side (the packet structure will be different, for sure, but works for understanding/figuring the process out in general terms). https://github.com/iBezneR/L2J_SunriseProject_Purity The client side will always be the same, always the same files, only the DAT structure will be different. I personally wrote myself some parsers for the data of the DAT files from OLD -> NEW client.
  • Topics

×
×
  • Create New...