~Dodging Skills with rPE~
Deutscher Guide:
Mit rPE und der funktion der cutsom filter koennt ihr euch einen Filter erstellen, der es euch ermoeglicht einem skill der auf euch gecastet wird auszuweichen. ich nutze dazu die skills: hide,chase walk oder cloaking
es funktioniert so:
der filter prueft die packete die vom server zum client gesendet werden und wenn diese dann bestimmte hex werte beinhalten dann sendet er hide/cloaking oder chasewalk.
das heist ihr koennt euch hiden etc bevor der skill euch trifft.
ich hab einen filter mal hochgeladen wie er aussehn koennte. es kann sein das ihr ihn ggf. ein bisschen aendern muesst. dazu muesst ihr ein paar packete capturen waerend ihr angegriffen werdet(geht ganz gut mit 2 eigenen accounts).
Download:
[Only registered and activated users can see links. Click Here To Register...]
Da sind drin:
-rPE
-beipsiel Filter
-eathena skill_DB.txt
mfg
~kill
English Guide:
This is another way of using rPE for Ragnarok Online, with this filter it is possible to dodge skills that are casted at you, probably in pvp. I am using this filter for chars, that have skills like hide/cloaking or chasewalk. So for example someone is casting Finger Offensive at you, the rPE filter checks the packets that the server is sending to the client, if it recievs the packet, that someone is casting this skill at you, you will automatically dodge this skill by using one of the listed skills. because rPE will send this packet direct to the server.
This is very very helpfull at low rate server with not that high stated players. with a normal internet connection it is possible to dodge a skill, if the enemys dex in under 135.
I have uploaded the filter with the other thinks you need. it could be that you will have to change a bit the used hex strings. probably they are different to your server, but shouldn't be. if it doesn't work try to capture a few packets yourself an check the hex strings.
other example:
-a filter for support priest, that when they recv physical dmg that they will auto cast kyrie
-auto guard cast for paladin
-a filter that let you dodge if you recv physical dmg
Download:
[Only registered and activated users can see links. Click Here To Register...]
Index:
-rPE
-beipsiel Filter
-eathena skill_DB.txt
thanks at nightmare who helped me to check a lot of hex values .but in the end i used some other values.
if you have questions just post it here
yours
~kill
Deutscher Guide:
Mit rPE und der funktion der cutsom filter koennt ihr euch einen Filter erstellen, der es euch ermoeglicht einem skill der auf euch gecastet wird auszuweichen. ich nutze dazu die skills: hide,chase walk oder cloaking
es funktioniert so:
der filter prueft die packete die vom server zum client gesendet werden und wenn diese dann bestimmte hex werte beinhalten dann sendet er hide/cloaking oder chasewalk.
das heist ihr koennt euch hiden etc bevor der skill euch trifft.
hide packet und die ID müsst ihr natürlich erneuern und durch eure ersetzten. das hide etc packet nach jedem ragnarok neustarten erneuern.Quote:
Beispiel:
Dies ist jetzt ein teilausschnitt aus dem filter um das oben beschriebene zu erkloeren
//##### Fire-Bolt##### works
setlength(SendRecvList,1);
setlength(SendRecvList[0].RecvHex,2);
SendRecvList[0].RecvHex[0] := '1100030000'; // erster hex string der im packet erhalten ist
SendRecvList[0].RecvHex[1] := ID; // eine konstatnte die hier weiter unten abgebildet ist, eure spieler ID
SendRecvList[0].SendHex := HidePacket; // das packet das gesendet wird, auch als constatnte
SendRecvList[0].count := 1;
SendIfMatch(buf,len,pSendWs1,SendRecvList);
HidePacket: string = '7200376132643061373700020031663638003300660076EB8 900'; // mein hide packet das gesendet wird, als konstante
ID: string ='76ECA900'; // eure account ID muss hier rein
ich hab einen filter mal hochgeladen wie er aussehn koennte. es kann sein das ihr ihn ggf. ein bisschen aendern muesst. dazu muesst ihr ein paar packete capturen waerend ihr angegriffen werdet(geht ganz gut mit 2 eigenen accounts).
Download:
[Only registered and activated users can see links. Click Here To Register...]
Da sind drin:
-rPE
-beipsiel Filter
-eathena skill_DB.txt
mfg
~kill
English Guide:
This is another way of using rPE for Ragnarok Online, with this filter it is possible to dodge skills that are casted at you, probably in pvp. I am using this filter for chars, that have skills like hide/cloaking or chasewalk. So for example someone is casting Finger Offensive at you, the rPE filter checks the packets that the server is sending to the client, if it recievs the packet, that someone is casting this skill at you, you will automatically dodge this skill by using one of the listed skills. because rPE will send this packet direct to the server.
This is very very helpfull at low rate server with not that high stated players. with a normal internet connection it is possible to dodge a skill, if the enemys dex in under 135.
every time you reconnect to ragnarok you have to set a new hide packet (or what skill you ever use) also you have to change your ID.Quote:
Example
This is just a part of the filter, just to explain it a bit more:
//##### Fire-Bolt##### works
setlength(SendRecvList,1);
setlength(SendRecvList[0].RecvHex,2);
SendRecvList[0].RecvHex[0] := '1100030000'; // this is the first ehx string that is checked by rPE
SendRecvList[0].RecvHex[1] := ID; //a constant that is shown at the buttom,your account ID
SendRecvList[0].SendHex := HidePacket; // the packet that rPE should send, also as a constant
SendRecvList[0].count := 1;
SendIfMatch(buf,len,pSendWs1,SendRecvList);
HidePacket: string = '7200376132643061373700020031663638003300660076EB8 900'; // my hide packet, that is sended by rPE
ID: string ='76ECA900'; //here you have to put in your account ID
I have uploaded the filter with the other thinks you need. it could be that you will have to change a bit the used hex strings. probably they are different to your server, but shouldn't be. if it doesn't work try to capture a few packets yourself an check the hex strings.
other example:
-a filter for support priest, that when they recv physical dmg that they will auto cast kyrie
-auto guard cast for paladin
-a filter that let you dodge if you recv physical dmg
Download:
[Only registered and activated users can see links. Click Here To Register...]
Index:
-rPE
-beipsiel Filter
-eathena skill_DB.txt
thanks at nightmare who helped me to check a lot of hex values .but in the end i used some other values.
if you have questions just post it here
yours
~kill