|
You last visited: Today at 06:35
Advertisement
Skill Spamming with rPE
Discussion on Skill Spamming with rPE within the RO Guides & Templates forum part of the Ragnarok Online category.
07/13/2007, 13:18
|
#91
|
elite*gold: 0
Join Date: Oct 2006
Posts: 35
Received Thanks: 3
|
Use the "search" function next time please -.-
maybe this will help you :
this is a anti-hide filter for WPE...
hope this helps you..
|
|
|
07/14/2007, 08:33
|
#92
|
elite*gold: 0
Join Date: Jul 2007
Posts: 6
Received Thanks: 0
|
Uhh, What's The Code For Cold Bolt? Iam Having Problems Understanding the one on top -_-"
|
|
|
07/14/2007, 17:08
|
#93
|
elite*gold: 0
Join Date: Jul 2007
Posts: 2
Received Thanks: 1
|
@greywyn tnx for the WPE filter.. it works..
Changing the Skill for Skill Spamming
Download this first 
In order for you to understand this tut, you must first know the basics of RPE, which
will not be discussed here.. (selecting process,loading custom filter,etc.)
Download this and load as custom filter
Now to change the skill which you desire to spam, search for the skill in the skill database
you downloaded, in this example, im using Cart Termination skill.. Look for its "ID" which is
the first number from the left, in this case, its 485..
Quote:
|
485,-2,6,1,-1,0,0,10,1,no,0,0,0,weapon,0 //WS_CARTTERMINATION#Cart Termination#
|
Input that number into the Dez: slot of RPE so that the equivalent hex code will be
outputted.. Load the ds-spamming custom filter and change the hex code for DS with
the CT hex code..
Quote:
change if (pos('7200',CurHex) <> 0) and (pos('002E00',CurHex) <> 0) then
to if (pos('7200',CurHex) <> 0) and (pos('00E501',CurHex) <> 0) then
|
You may be wondering why it is 00E501 and not 01E500 when the hex code
for CT is 1E5.. Well, i dont rili know the explanation to that, but hey, it works.. Like
Acid Demonstration which is Dez:490 <> Hex:1EA it should be 00EA01..
@shoti08 so for Cold Bolt, it's Dez:14 <> Hex:E.. therefore the code is 000E00
To those having Runtime Error in using RPE..
Quote:
Runtime error 21 at 024F690A
Runtime error 103 at 024F693
|
It's rili simple..
Quote:
change the "D:" in
procedure DLL_Load;
begin
IntLog('d:\rpe_log.log');
end;
to "C:" in the custom filter
|
Here's a screenshot.. Enjoy!!
|
|
|
07/19/2007, 18:44
|
#94
|
elite*gold: 0
Join Date: May 2007
Posts: 6
Received Thanks: 0
|
I have fix on my server, and now I cant spam(( Help me, maybe someone have new ideas?
|
|
|
07/26/2007, 19:02
|
#95
|
elite*gold: 0
Join Date: Feb 2007
Posts: 3
Received Thanks: 0
|
hallo,
hätte da 2 fragen,
erste: könnte man auch sowas für einen Taekwon Ranker machen also das er sau schnell combos spammt, so das man nur ein kick drücken muss und rPE macht die anderen kicks von allein?
zweite: wie kann ich 2 skills zum spammen benutzen, also wollte auf einem server Sonic Blow und Soul Destroyers spammen je nach situation ohne den filter extra wechseln zu müssen. wäre sowas machbar?
grüsse[img]text2schild.php?smilienummer=1&text=Bumbumboom' border='0' alt='Bumbumboom' />
|
|
|
07/28/2007, 17:10
|
#96
|
elite*gold: 0
Join Date: Jul 2007
Posts: 1
Received Thanks: 0
|
Could anyone post a complete filter for DS, as fast as possible without freeze, tried myself for hours. Without notes inside, just post a complete filter without lag... or with lag.
Thanks.
|
|
|
08/03/2007, 07:39
|
#97
|
elite*gold: 0
Join Date: Jul 2007
Posts: 6
Received Thanks: 0
|
Oh , i get it now.. tnx a lot tseys!!.. now i know how to edit those values.. ^^
<hr>Append on Aug 3 2007, 07:40<hr> Aradrion , i think it would be best to use 150 for value and 0 for sleep.. iam using this values and i get 3 ds at 1 click.. no delay.. should work for you.. ^^
|
|
|
08/06/2007, 11:56
|
#98
|
elite*gold: 0
Join Date: Aug 2007
Posts: 4
Received Thanks: 0
|
i dont know how to download T_T pls help me..
|
|
|
08/09/2007, 10:03
|
#99
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1
Received Thanks: 0
|
How to make a custom filter that:
Make a keybinder of 2-4 skills
example for asura
Dangerous Soul Collect,Fury,Dangerous Soul Collect
To send all this packet with a hotkey in the game
the point is to make cast the asura faster
1 click = 3 actions..
how to make such filter?
plz help.pm me or reply
|
|
|
08/10/2007, 17:33
|
#100
|
elite*gold: 0
Join Date: Aug 2007
Posts: 20
Received Thanks: 0
|
ei killyou can u post here a link for Soul destroyer or breaker filter!!pls
|
|
|
08/11/2007, 10:50
|
#101
|
elite*gold: 0
Join Date: Apr 2005
Posts: 1,621
Received Thanks: 256
|
um mehrere skills auf einmal spammen zu können, sodass man die filter nicht wechseln muss, hoffe es ist verständlich.
Code:
function Send_WS1(s: TSocket; var Buf : PChar; len, flags: Integer; pSendWs1, pRecvWs1, pSendWs2, pRecvWs2: Pointer; var IsWorking : Boolean):Integer; stdcall;
var
CurHex: string;
i : integer;
begin
CurHex := GetBufferAsHex(buf, len);
if (pos('7200',CurHex) <> 0) and ((pos('First Skill Hex',CurHex)<> 0) or (pos('Second Skill Hex',CurHex)<> 0)or (pos('Thierd Skill Hex',CurHex)<> 0)) then //here you can add much more skills
begin
@Send_Callback := pSendWs1;
for i := 0 to 200 do // the number how often this packet should be send
begin
sleep(7); // delay you can choose however you like (time in ms)
SendPacket(s,CurHex);
end;
end;
|
|
|
08/11/2007, 17:11
|
#102
|
elite*gold: 0
Join Date: Aug 2007
Posts: 20
Received Thanks: 0
|
awwwww!its not
Soul Breaker!its Enchant dedly poison!!!
English Pls
<hr>Append on Aug 11 2007, 19:53<hr> im just wondered!!im using the Filter 4 bash!!!but when im using Enchant deadly poison its spamming too!!!pls answer
HEre my Filter
library rPE_ex;
uses
windows,
Winsock2,
winsock,
rpefuncs;
function Send_WS1(s: TSocket; var Buf : PChar; len, flags: Integer; pSendWs1, pRecvWs1, pSendWs2, pRecvWs2: Pointer; var IsWorking : Boolean):Integer; stdcall;
var
CurHex: string;
i : integer;
begin
CurHex := GetBufferAsHex(buf, len);
if (pos('7200',CurHex) <> 0) and (pos('000500',CurHex) <> 0) then
begin
@Send_Callback := pSendWs1;
for i := 0 to 300 do // the number how often this packet should be send
begin
sleep(5); // delay you can chhose however you like (time in ms)
SendPacket(s,CurHex);
end;
end;
result := 0;
end;
procedure DLL_Load;
begin
IntLog('D:\rpe_log.log');
end;
procedure DLL_UnLoad;
begin
Running := false;
EndLog;
end;
procedure DLLMain(dwR: integer);
begin
case dwR of
DLL_PROCESS_ATTACH:
DLL_Load;
DLL_PROCESS_DETACH:
DLL_UnLoad;
end;
end;
exports
Send_WS1;
begin
Running := true;
DLLProc := @DLLMain;
DLLMain(DLL_PROCESS_ATTACH);
end.
|
|
|
08/17/2007, 18:26
|
#103
|
elite*gold: 0
Join Date: Feb 2007
Posts: 49
Received Thanks: 17
|
Hi, hab mal wieder ein prob mit rPE,
ich habe jetzt seit ca 1 monat Windows Vista,
rPE funktionierte auch ne weile, aber seit neustem muss ich wenn ich einmal nen programm ausgewählt habe, das prog schließe, rPE schließe, und nach ner weile es wieder benutzen will erst den pc restarten muss...
weis wer woran es liegen kann?
|
|
|
08/25/2007, 17:29
|
#104
|
elite*gold: 0
Join Date: Aug 2007
Posts: 2
Received Thanks: 0
|
Hm, I have a question finger offensive aka throw spheres. Is there anyway to spam that with rPE? I tried sending the FO packet, but i need to use dangerous soul collect too.
|
|
|
08/26/2007, 08:51
|
#105
|
elite*gold: 0
Join Date: Mar 2007
Posts: 26
Received Thanks: 1
|
would it be possible to use the spam filter together w/ the dodge filter ^_^ can anyone make a filter for that ^_^ thanks
|
|
|
 |
|
Similar Threads
|
[tutorial] fussion [GM]ghostmode+teleportation;Skill speed,Skill range hack
03/05/2014 - Dekaron PServer Hacks, Bots, Cheats & Exploits - 275 Replies
Ok..this is my first tutorial..today i will show you how to make ghostmode+teleportation hack,Skill speed hack,Skill range hack,Wall Hack,Mana consumation hack..
The programs that you need is :
Cheat engine 5.4/5.5 version
Microsoft excell 2003 or try with newest version..maybe will work again
1. ghostmode+teleport hack
firtst step is open (launch) your dekaron..without login!
next open your Cheat Engine and you will see in the left corner one little PC that glow..press on it and...
|
Dekaron Fussion.... Vac , Skill , Wall , Skill Range ...... hack ? give me the links
04/13/2011 - Dekaron Private Server - 5 Replies
hey Guys im searching for Good Dekaron Fussion Hacks....
Please contact me or Give me links
Thx you very much.
:):D
|
WPE skill spamming cart termination
09/08/2009 - Ragnarok Online - 0 Replies
help nmn panu mag spam ng cart termination sa dark ro
|
hola me ayudan con el skill spamming
10/08/2008 - Say Hello - 0 Replies
hola
hay alguien que hable español y si hay alguien me prodria ayudar con el skill spamming de rpe no e podido descargar los filtros no se deja descargar gracias
|
All times are GMT +1. The time now is 06:35.
|
|