Rappelz FarmBot Remeke

04/03/2011 15:39 sliwja#316
Quote:
Originally Posted by donkeykill View Post
Hello Sliwja :),

i got an inprovement for mage classes :).

Do u mind to add another General attack ? so my pet can attack to :).
this is what i try now and it works amazing without pet.

general attack: firebolt, Skill1: lighting bolt. with cd of 1 and cast also of 1.
it spams faster than u normal can do.

but the prob is my pet dont attack :P without clicking on mob with ctrl. do u mind to fix in an extra attack? like thisway the bot is perfect for mage classes.

mvg

Donkey
i know what u want 2 spawn skills :D i can do something like that
in code at line 1985 +/-
Quote:
1985 While Hex($mobhealth, 6) = $r_mobhealthempty ; skill 1 spaming
1986 If $r_skillmodifier1 ="Alt" Then
1987 send("{ALTDOWN}")
1988 send($r_skilltaste1)
send("{ALTUP}")
ElseIf $r_skillmodifier1 ="Ctrl" Then
send("{CTRLDOWN}")
send($r_skilltaste1)
send("{CTRLUP}")
ElseIf $r_skillmodifier1 ="Shift" Then
send("{SHIFTDOWN}")
send($r_skilltaste1)
send("{SHIFTUP}")
ElseIf $r_skillmodifier1 ="None" Then
send($r_skilltaste1)
EndIf
readcolor()
add this:
Quote:
1985 While Hex($mobhealth, 6) = $r_mobhealthempty ; skill 1 spaming
If $r_skillmodifier2 ="Alt" Then
send("{ALTDOWN}")
send($r_skilltaste2)
send("{ALTUP}")
ElseIf $r_skillmodifier2 ="Ctrl" Then
send("{CTRLDOWN}")
send($r_skilltaste2)
send("{CTRLUP}")
ElseIf $r_skillmodifier2 ="Shift" Then
send("{SHIFTDOWN}")
send($r_skilltaste2)
send("{SHIFTUP}")
ElseIf $r_skillmodifier2 ="None" Then
send($r_skilltaste2)
EndIf

If $r_skillmodifier1 ="Alt" Then
send("{ALTDOWN}")
send($r_skilltaste1)
send("{ALTUP}")
ElseIf $r_skillmodifier1 ="Ctrl" Then
send("{CTRLDOWN}")
send($r_skilltaste1)
send("{CTRLUP}")
ElseIf $r_skillmodifier1 ="Shift" Then
send("{SHIFTDOWN}")
send($r_skilltaste1)
send("{SHIFTUP}")
ElseIf $r_skillmodifier1 ="None" Then
send($r_skilltaste1)
EndIf
readcolor()
04/04/2011 17:53 donkeykill#317
Quote:
Originally Posted by sliwja View Post
i know what u want 2 spawn skills :D i can do something like that
in code at line 1985 +/-

add this:
thank you Sliwja ur the best :) ( but better if u help with ptmode 2 xD, just bought some programming books 0.0 and still cannot fix it :P)

this make skill 2 also an spam skill :) i will try. :D

(btw do i need to change it to when using pt mode? at the last func: Func checkmageskill2()
04/05/2011 00:17 sliwja#318
Quote:
Originally Posted by donkeykill View Post
but better if u help with ptmode 2 xD, just bought some programming books 0.0 and still cannot fix it :P)
u dont have to fix it but write code :P

Quote:
Originally Posted by donkeykill View Post
(btw do i need to change it to when using pt mode? at the last func: Func checkmageskill2()
Yea, Func checkmageskill2() is also for spam skill for pt mode 1 and 2
04/06/2011 15:09 donkeykill#319
Quote:
Originally Posted by sliwja View Post
u dont have to fix it but write code :P

Yea, Func checkmageskill2() is also for spam skill for pt mode 1 and 2
yes i have to do:P i have written my part :P it all works except tabbing every sec :P. so that i have to fix.
yea it works great on my Warlock now. :D u should rlease a new version for mage class i think. :)
04/08/2011 08:49 sliwja#320
Quote:
Originally Posted by donkeykill View Post
yea it works great on my Warlock now. :D u should rlease a new version for mage class i think. :)
i will think about that but then need new option in gui, because bs,sb,clerics have 1 spawn magic skill.
how feel ur pt mode 2?
04/08/2011 17:21 donkeykill#321
Quote:
Originally Posted by sliwja View Post
i will think about that but then need new option in gui, because bs,sb,clerics have 1 spawn magic skill.
how feel ur pt mode 2?
:) i know how to fix this. make a new box in gui with skill 8 (second spam skill for mage. ) and change it at
Code:
checkmageskill
and put in there
Code:
If $r_skillmodifier8
when none second spam skill is configured it need to take old
Code:
checkmageskill
so when u have sb with 1 magic skill it uses
Code:
checkmageskill
and when u have cm / wl u let it go to
Code:
checkmageskill3
the same for pt mode :).



my ptmode 2 looks like this atm :
Code:
Func combo3()
		SendKeepActive("Rappelz")	;Rappelz always in foreground
	Opt("PixelCoordMode", 2)	;pixel directly read from client
	Opt("MouseCoordMode", 2)
	$funktionan = True
	$summonwait = True
	$chipmiss = 0
	$peton = 1
	$mobkiled = 0
	$buffround = 0
	$i=0
	$nochip=0
	$petbuf=0
	If $r_bp="nie" And $r_skillactive17 = 1  Then
		$bpon = 1 
	Else
		$bpon = 0
	EndIf
	If $r_buffskillactive5 = 1 or $r_buffskillactive6 = 1 or $r_buffskillactive7 = 1 Then
		$petbuf=1
	EndIf
	$oldlistpet=$r_listpet
		While $funktionan = True
		summon()
		While $summonwait = True and $funktionan = True
		summon()
		readcolor()
			If Hex($mobhealthempty, 6) = $r_mobhealthempty and Hex($mobhealthfull, 6) <> $r_mobhealthempty Then
				checkmageskill2()
				readcolor()
				;secpethealthskills()
				summon()
				mppotion()
				If Hex($mobhealthempty, 6) = $r_mobhealthempty Then
				tabben()
				EndIf
			EndIf
		WEnd
		WEnd
EndFunc
only thing is it presses tab every sec so it attacks every mob.Any fix for that ?
04/11/2011 10:37 haj0#322
Hi all, i would like to know if this bot works on all servers? (US)

and can someone upload a video on youtube how to configure it, tnx
04/13/2011 17:16 sephiroth823#323
so what u need to set for colour is, you start bot by pressing HOME, and when window 1 pop up, you click on a mob in game and press OK, then when window 2 pop-up, you click on ur pet and press OK, and then for window 3 pop-up, u need to die?
then u can start the bot?
04/13/2011 18:11 Horror##324
n1 bot thanks
04/13/2011 18:27 sephiroth823#325
lol i have tried using standard color, setup keys, complie and run the .exe with admin, then load my setting by typing profile name and click profile load, then tab b to game and press HOME, i think the bot is working, but it just freeze my rappelz window, if i press 3 it will pop-up how many mobs i have kill (which is 0 0) and then bot quit
am i doing something wrong?
thank you!
04/18/2011 15:30 Gorwales#326
@sliwja

Erstmal ganz grosses DANKE für deinen BOT und die arbeit die du da reinsteckst. Ich nutze ihn schon seit du damit angefangen hast diesen BOT online zu stellen.

Meine Bitte wäre das du vieleicht noch eine Funktion einfügst wo der BOT zwar die trap erkennt und nicht attackiert aber KEINE Chips nutzt zum farmen.

Da ich einen SL nutze und dieser sehr gut ohne Chips farmen kann.

First of all big THANK YOU for your BOT and the work you put in there. I use it since you started doing this have to make BOT online.

I would ask that you continue to function or maybe paste it detects where the BOT Although the trap and not be attacked but NO chips used for farming.

Since I use a SL and farms this may very well without chips.
04/18/2011 18:37 haj0#327
Can you please help me, I set the colors and start tge bot. the bot rotates the camera and targets the mob, but it wont attack, does anyone have this problem? Pls reply what can i do to and why it wont attack :/
04/18/2011 20:21 ufoman444#328
any1 has the code for Cm`s ?
04/23/2011 10:08 atharnas#329
do I need a GG bypass?
04/23/2011 14:48 Mr Guitou#330
if you play on 32bit OS, yes.
If playing on 64bit OS then no.