Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz
You last visited: Today at 08:03

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



JT's Rappelz Bot

Discussion on JT's Rappelz Bot within the Rappelz forum part of the MMORPGs category.

Closed Thread
 
Old 05/20/2008, 19:13   #751
 
django23's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 53
Received Thanks: 3
I'm sorry.
Jt is great, but i was scaried that the .exe contain a keylogger.
Good work
django23 is offline  
Old 05/20/2008, 19:32   #752
 
armegetton's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by django23 View Post
I'm sorry.
Jt is great, but i was scaried that the .exe contain a keylogger.
Good work
I suppose that's a valid concern. but JT is using a scripting language for the bot (which makes automations easier like keypresses and mouse movement)

and much harder to record a user's activities.

I guess it could be done, but it would require a ridiculous amount of effort with the language he's currently using.

so you probably don't have to worry about that here.
armegetton is offline  
Old 05/20/2008, 20:01   #753
 
elite*gold: 0
Join Date: Mar 2008
Posts: 505
Received Thanks: 107
lol...
autoit can control TCP ... that means it is able to send/receive informations. ,-)

i think its better to scan files from time to time.. ,-)
Landa is offline  
Old 05/20/2008, 20:19   #754
 
elite*gold: 0
Join Date: Apr 2008
Posts: 208
Received Thanks: 37
Quote:
Originally Posted by condorman View Post
hi,

first of all .. thanks for the bot
i did not read all the 75 sites of this thread.
i am new to this and still testing.
it looks like the bot still having problems.

1. if the mob is too far away, the bot do not chip the mob. and thats suicide at low lvl maybe you add the feature, if mob is like 40% hp, then chip one more time. because sometimes i cant kill the mob with one chip.

2. i was testing at laksy north (orcs / yetis). sometimes it says: possible bot trap. but it was targeting small hairy yeti. so this is buggy too. plus, he dosent loot anymore.

3. if i change the attack from 8000 to 1000 for expample, it says ... possible bot trap, when he was targeting an orc or yeti.

maybe you can fix those problems.

regards
And that's what happens when you don't read any of the rest of the thread, and expect someone to actually answer your questions, which have already been addressed a 1000 times over...

Quote:
Originally Posted by django23 View Post
I'm sorry.
Jt is great, but i was scaried that the .exe contain a keylogger.
Good work
And if you're so concerned about a keylogger, why didn't you bother checking even 2 pages back to see that someone had already done this check not even a day ago lol (not to mention several times before...).
m00000 is offline  
Thanks
1 User
Old 05/20/2008, 23:18   #755
 
elite*gold: 0
Join Date: Jul 2007
Posts: 292
Received Thanks: 580
Quote:
Originally Posted by armegetton View Post
hi everyone, I've been following this thread for some time now. though I haven't said anything, I just wanted to make sure I knew all the details.

I'm one of those who in the v11.3 was getting the error -1: specifically the 'subscript used with non-array variable' one.

and not the 'variable used not defined' that I saw some having. (or something similar)

I believe the problem is due to vista, as I am using vista 32-bit home basic.

and I have also been noting jt's attempts to getting rid of the -1 error.
However, I do not believe adding that pause to the script will fix the issue.

your new verson 11.4, does in fact get rid of the error, but only to send the script into an infinite loop.

my reasons for this are as follows:
I must apologize to jt before hand as I have been debugging his code (sorry, sorry) (and yes this means I do have the source *please don't kill me*, but due to jt's desire to keep cheap spin-offs floating around; I have respected his wish. and will continue to do so, as I am only trying to help)

jt there is a certain part of your 11.4a code that's causing the issue.
true the -1 error is gone, but look:

= PixelSearch(480, 5, 1200, 5, 11119531, 0)
While IsArray() = 0
ToolTip("Working - If this does not go away in after 10 seconds, Press
CTRL+ALT+X to exit")
WEnd
ToolTip("Target window POS set")

ftarget is remaining 0, the assumption that we need to wait for vista to update via the pixelsearch is incorrect!
(also, this is will cause a memory leak effectively maxing out one's CPU resources due to the excessive tooltip, the fix for this is simple just add a Sleep(200) line right below the tooltip)

however, the leak isn't the real problem here. the problem still remains that ftarget isn't getting updated (and thusly not being turned into an array, which means that if your code hits one of the ...target[x] lines, we will indeed see the -1 error return)

what I haven't done is try and fix the code myself, as I see this as useless because jt is the one coming out with the updates (and again, I do not intend to even attempt to do so)

however, my advice (should you decide to follow it) is this:

= PixelSearch(480, 5, 1200, 5, 11119531, 0)
While (@error = 1) ; because if pixelsearch fails @error becomes 1
Sleep (100) ; to stop the memory leak
@error = 0 ; you'll need to reset this because I do not believe that a success will change it back to a 0, (or you can use a temp variable via: temp_err = @error ... and so on and so forth.)
= PixelSearch(480, 5, 1200, 5, 11119531, 0) ; a retry, hoping it works this time around
ToolTip("-something else in here telling the user that it's retrying or whatever-") ; it doesn't matter much
Sleep (100) ; personal preference really, but it will also lessen the memory usage
WEnd
ToolTip("Target window POS set")

now, if even this doesn't work then I can only assume that vista isn't letting pixelsearch grab the correct information (but if it's working in other areas, then the problem may be something totally different all together, still)

....umm .... I think that's all I had to say.

oh yes, good work jt. I was really impressed by the amount of effort you put into this. (as I am very lazy when I actually have to write my own code from scratch, Kudos to you man )

and if you so desire, I don't mind stopping in from time to time or helping you debug in general, or whatever else is needed (but seeing as though you're doing well on your own, I'm not expecting anything )

alright, I'll check back tomorrow (after I sleep a bit -no pun intended- )
later all.
your recommendation was stage two of my attempt to repair the error Line-1 code. The infinite loop was put in place on purpose to isolate the problem. In theory I was experimenting and trying to get feedback from everyone with the problem. You are the first I have seen to provide such. I appreciate the recommendation and it will actually be in the next release of the script that I might be posting later tonight.
jtremblay is offline  
Thanks
1 User
Old 05/20/2008, 23:21   #756
 
elite*gold: 0
Join Date: Jul 2007
Posts: 292
Received Thanks: 580
Quote:
Originally Posted by armegetton View Post
ok, just so you all know.

I'm going to vouch for JT on this one.

His .exe is 100% virus/malware/spyware free.
it contains nothing of malicious value or intent.

I don't want to see any more posts of virus/whatever scans on this thread.

(I know most of them are coming up with nothing or false-positives or whatever,
but it's just annoying. seriously.)

so, yeah. you all can stop that part now.
(or I might have to kill you)
no matter how many times you say it.... there will be another in the next 5 pages of this post...
jtremblay is offline  
Old 05/20/2008, 23:22   #757
 
elite*gold: 0
Join Date: Jul 2007
Posts: 292
Received Thanks: 580
Quote:
Originally Posted by Landa View Post
no malware? for sure..but if i start the bot...my rappelz char is killing everything alone?

I DONE NOTHING..IT JUST KILL AROUND..never touched the mouse...how can that be.. *hrhr*
that sounds truely mallicious - I think it might be a bot or something...
jtremblay is offline  
Thanks
2 Users
Old 05/21/2008, 00:35   #758
 
elite*gold: 0
Join Date: Apr 2008
Posts: 25
Received Thanks: 2
Yo guys,

i have some more german Bottraps here for Futurereleases. More to come.
Btw JT great work again !! Thank u

greetz Simon


Target Name: Tamia

PixelGetColor(($xlet + 0),10) = 0
PixelGetColor(($xlet + 0),11) = 0
PixelGetColor(($xlet + 0),12) = 0
PixelGetColor(($xlet + 0),13) = 0
PixelGetColor(($xlet + 0),14) = 0
PixelGetColor(($xlet + 2),8) = 0
PixelGetColor(($xlet + 2),9) = 0
PixelGetColor(($xlet + 2),10) = 0
PixelGetColor(($xlet + 2),11) = 0
PixelGetColor(($xlet + 2),12) = 0
PixelGetColor(($xlet + 2),13) = 0
PixelGetColor(($xlet + 2),14) = 0
PixelGetColor(($xlet + 6),9) = 0
PixelGetColor(($xlet + 6),10) = 0
PixelGetColor(($xlet + 6),11) = 0
PixelGetColor(($xlet + 6),12) = 0
PixelGetColor(($xlet + 6),13) = 0
PixelGetColor(($xlet + 6),14) = 0
PixelGetColor(($xlet + 10),10) = 0
PixelGetColor(($xlet + 10),11) = 0
PixelGetColor(($xlet + 10),12) = 0
PixelGetColor(($xlet + 10),13) = 0
PixelGetColor(($xlet + 10),14) = 0
PixelGetColor(($xlet + 12),8) = 0
PixelGetColor(($xlet + 12),9) = 0
PixelGetColor(($xlet + 12),10) = 0
PixelGetColor(($xlet + 12),11) = 0
PixelGetColor(($xlet + 12),12) = 0
PixelGetColor(($xlet + 12),13) = 0
PixelGetColor(($xlet + 12),14) = 0
PixelGetColor(($xlet + 18),10) = 0
PixelGetColor(($xlet + 18),11) = 0
PixelGetColor(($xlet + 18),12) = 0
PixelGetColor(($xlet + 18),13) = 0
PixelGetColor(($xlet + 18),14) = 0

End Target

Target Name: Wüsten Tamia

PixelGetColor(($xlet + 0),14) = 0
PixelGetColor(($xlet + 5),14) = 0
PixelGetColor(($xlet + 9),8) = 0
PixelGetColor(($xlet + 9),9) = 0
PixelGetColor(($xlet + 9),10) = 0
PixelGetColor(($xlet + 9),11) = 0
PixelGetColor(($xlet + 9),12) = 0
PixelGetColor(($xlet + 21),6) = 0
PixelGetColor(($xlet + 21),7) = 0
PixelGetColor(($xlet + 21),8) = 0
PixelGetColor(($xlet + 21),9) = 0
PixelGetColor(($xlet + 21),10) = 0
PixelGetColor(($xlet + 21),11) = 0
PixelGetColor(($xlet + 21),12) = 0
PixelGetColor(($xlet + 31),8) = 0
PixelGetColor(($xlet + 31),9) = 0
PixelGetColor(($xlet + 31),10) = 0
PixelGetColor(($xlet + 31),11) = 0
PixelGetColor(($xlet + 31),12) = 0
PixelGetColor(($xlet + 31),13) = 0
PixelGetColor(($xlet + 31),14) = 0
PixelGetColor(($xlet + 53),10) = 0
PixelGetColor(($xlet + 53),11) = 0
PixelGetColor(($xlet + 53),12) = 0
PixelGetColor(($xlet + 53),13) = 0
PixelGetColor(($xlet + 53),14) = 0
PixelGetColor(($xlet + 55),8) = 0
PixelGetColor(($xlet + 55),9) = 0
PixelGetColor(($xlet + 55),10) = 0
PixelGetColor(($xlet + 55),11) = 0
PixelGetColor(($xlet + 55),12) = 0
PixelGetColor(($xlet + 55),13) = 0
PixelGetColor(($xlet + 55),14) = 0
PixelGetColor(($xlet + 59),9) = 0
PixelGetColor(($xlet + 59),10) = 0
PixelGetColor(($xlet + 59),11) = 0
PixelGetColor(($xlet + 59),12) = 0
PixelGetColor(($xlet + 59),13) = 0
PixelGetColor(($xlet + 59),14) = 0
PixelGetColor(($xlet + 63),10) = 0
PixelGetColor(($xlet + 63),11) = 0
PixelGetColor(($xlet + 63),12) = 0
PixelGetColor(($xlet + 63),13) = 0
PixelGetColor(($xlet + 63),14) = 0
PixelGetColor(($xlet + 65),8) = 0
PixelGetColor(($xlet + 65),9) = 0
PixelGetColor(($xlet + 65),10) = 0
PixelGetColor(($xlet + 65),11) = 0
PixelGetColor(($xlet + 65),12) = 0
PixelGetColor(($xlet + 65),13) = 0
PixelGetColor(($xlet + 65),14) = 0
PixelGetColor(($xlet + 71),10) = 0
PixelGetColor(($xlet + 71),11) = 0
PixelGetColor(($xlet + 71),12) = 0
PixelGetColor(($xlet + 71),13) = 0
PixelGetColor(($xlet + 71),14) = 0

End Target

Target Name: Wüsten Mondhase

PixelGetColor(($xlet + 0),14) = 0
PixelGetColor(($xlet + 5),14) = 0
PixelGetColor(($xlet + 9),8) = 0
PixelGetColor(($xlet + 9),9) = 0
PixelGetColor(($xlet + 9),10) = 0
PixelGetColor(($xlet + 9),11) = 0
PixelGetColor(($xlet + 9),12) = 0
PixelGetColor(($xlet + 21),6) = 0
PixelGetColor(($xlet + 21),7) = 0
PixelGetColor(($xlet + 21),8) = 0
PixelGetColor(($xlet + 21),9) = 0
PixelGetColor(($xlet + 21),10) = 0
PixelGetColor(($xlet + 21),11) = 0
PixelGetColor(($xlet + 21),12) = 0
PixelGetColor(($xlet + 31),8) = 0
PixelGetColor(($xlet + 31),9) = 0
PixelGetColor(($xlet + 31),10) = 0
PixelGetColor(($xlet + 31),11) = 0
PixelGetColor(($xlet + 31),12) = 0
PixelGetColor(($xlet + 31),13) = 0
PixelGetColor(($xlet + 31),14) = 0
PixelGetColor(($xlet + 42),6) = 0
PixelGetColor(($xlet + 42),7) = 0
PixelGetColor(($xlet + 42),8) = 0
PixelGetColor(($xlet + 42),9) = 0
PixelGetColor(($xlet + 42),10) = 0
PixelGetColor(($xlet + 42),11) = 0
PixelGetColor(($xlet + 42),12) = 0
PixelGetColor(($xlet + 42),13) = 0
PixelGetColor(($xlet + 42),14) = 0
PixelGetColor(($xlet + 49),6) = 0
PixelGetColor(($xlet + 49),7) = 0
PixelGetColor(($xlet + 49),8) = 0
PixelGetColor(($xlet + 49),9) = 0
PixelGetColor(($xlet + 49),10) = 0
PixelGetColor(($xlet + 49),11) = 0
PixelGetColor(($xlet + 49),12) = 0
PixelGetColor(($xlet + 49),13) = 0
PixelGetColor(($xlet + 49),14) = 0
PixelGetColor(($xlet + 59),8) = 0
PixelGetColor(($xlet + 59),9) = 0
PixelGetColor(($xlet + 59),10) = 0
PixelGetColor(($xlet + 59),11) = 0
PixelGetColor(($xlet + 59),12) = 0
PixelGetColor(($xlet + 59),13) = 0
PixelGetColor(($xlet + 59),14) = 0
PixelGetColor(($xlet + 73),6) = 0
PixelGetColor(($xlet + 73),7) = 0
PixelGetColor(($xlet + 73),8) = 0
PixelGetColor(($xlet + 73),9) = 0
PixelGetColor(($xlet + 73),10) = 0
PixelGetColor(($xlet + 73),11) = 0
PixelGetColor(($xlet + 73),12) = 0
PixelGetColor(($xlet + 73),13) = 0
PixelGetColor(($xlet + 73),14) = 0
PixelGetColor(($xlet + 84),10) = 0
PixelGetColor(($xlet + 84),11) = 0
PixelGetColor(($xlet + 84),12) = 0
PixelGetColor(($xlet + 84),13) = 0
PixelGetColor(($xlet + 84),14) = 0

End Target
SimonHimself is offline  
Old 05/21/2008, 03:53   #759
 
armegetton's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by jtremblay View Post
your recommendation was stage two of my attempt to repair the error Line-1 code. The infinite loop was put in place on purpose to isolate the problem. In theory I was experimenting and trying to get feedback from everyone with the problem. You are the first I have seen to provide such. I appreciate the recommendation and it will actually be in the next release of the script that I might be posting later tonight.
hmm, well I've been experimenting with the bot (and other scripts) and found some rather disturbing information.

1st off - I found that the bot will pass the winpos issue (this is the same/current one from before) if an enemy or some character that uses the central slot in the HUD has previously been selected. but I assume that this only gives the bot incorrect information as it simply loops itself in the main body but it never re-enters any of those conditionals.
(so yes, a totally useless find)

2nd - I've attempted to run only the camera turning. and it is also unsuccessful.
am I correct to assume that the bot cannot move the mouse when rappelz is the selected window? nor can it click the mouse? and thus the reason why the bot switches between the 'bot-window' and rappelz client when during a camera turn?
my reason for asking this is thus: when it attempts to perform this (at least on my system and others similar) the camera actually doesn't get moved.

and when I built a script from scratch (that didn't re-focus a different window) it couldn't move the mouse at all. let alone turn the camera in-game.

also, jt, am I correct to assume that this bot works in xp, and, at least, on the vista systems you've tried it on?

I am currently at work (I'm off the clock but my ride is here for another hour or so).

so once I get back to my laptop, I can put out some screenies if I need.

I'll also make some other (albeit feeble) attempts to give you a heads-up about the vista related bugs.

so, currently. the only things I see that are preventing usage on my system are 1 - the failing pixelsearch function (because if the first instance usage of the function doesn't work, I can't see why the entire chain of them afterwards will work) and 2 - the screwy mouse movement and clicking within the rappelz client.

(though that window re-focus bit may work in xp *I'll try testing it on xp tonight if I can*, it doesn't seem to work in vista home ... or the ones I've tried ... I suppose I can try a different computer and see if I get the same results)

so, in the meantime, I'll be attempting to see if I can find alternative ways to fix either of those issues. (because if I can find a way around the mouse thing, heaven forbid letting the bot work in full-screen mode)

ok, that's it for now.
armegetton is offline  
Old 05/21/2008, 12:03   #760
 
elite*gold: 0
Join Date: Dec 2006
Posts: 61
Received Thanks: 2
Target Name: Desert Tamias

PixelGetColor(($xlet + 0),13) = 0
PixelGetColor(($xlet + 1),8) = 0
PixelGetColor(($xlet + 1),9) = 0
PixelGetColor(($xlet + 1),10) = 0
PixelGetColor(($xlet + 1),11) = 0
PixelGetColor(($xlet + 1),12) = 0
PixelGetColor(($xlet + 4),10) = 0
PixelGetColor(($xlet + 4),11) = 0
PixelGetColor(($xlet + 4),12) = 0
PixelGetColor(($xlet + 4),13) = 0
PixelGetColor(($xlet + 8),10) = 0
PixelGetColor(($xlet + 8),11) = 0
PixelGetColor(($xlet + 11),9) = 0
PixelGetColor(($xlet + 11),10) = 0
PixelGetColor(($xlet + 12),11) = 0
PixelGetColor(($xlet + 14),12) = 0
PixelGetColor(($xlet + 17),10) = 0
PixelGetColor(($xlet + 17),11) = 0
PixelGetColor(($xlet + 17),12) = 0
PixelGetColor(($xlet + 17),13) = 0
PixelGetColor(($xlet + 21),10) = 0
PixelGetColor(($xlet + 21),11) = 0
PixelGetColor(($xlet + 24),9) = 0
PixelGetColor(($xlet + 24),10) = 0
PixelGetColor(($xlet + 24),11) = 0
PixelGetColor(($xlet + 24),12) = 0
PixelGetColor(($xlet + 24),13) = 0
PixelGetColor(($xlet + 31),6) = 0
PixelGetColor(($xlet + 31),7) = 0
PixelGetColor(($xlet + 31),8) = 0
PixelGetColor(($xlet + 31),9) = 0
PixelGetColor(($xlet + 31),10) = 0
PixelGetColor(($xlet + 31),11) = 0
PixelGetColor(($xlet + 31),12) = 0
PixelGetColor(($xlet + 31),13) = 0
PixelGetColor(($xlet + 42),6) = 0
PixelGetColor(($xlet + 42),7) = 0
PixelGetColor(($xlet + 42),8) = 0
PixelGetColor(($xlet + 42),9) = 0
PixelGetColor(($xlet + 42),10) = 0
PixelGetColor(($xlet + 42),11) = 0
PixelGetColor(($xlet + 42),12) = 0
PixelGetColor(($xlet + 42),13) = 0
PixelGetColor(($xlet + 47),12) = 0
PixelGetColor(($xlet + 47),13) = 0
PixelGetColor(($xlet + 48),11) = 0
PixelGetColor(($xlet + 48),14) = 0
PixelGetColor(($xlet + 49),14) = 0
PixelGetColor(($xlet + 51),10) = 0
PixelGetColor(($xlet + 51),11) = 0
PixelGetColor(($xlet + 51),12) = 0
PixelGetColor(($xlet + 51),13) = 0
PixelGetColor(($xlet + 54),9) = 0
PixelGetColor(($xlet + 54),10) = 0
PixelGetColor(($xlet + 54),11) = 0
PixelGetColor(($xlet + 54),12) = 0
PixelGetColor(($xlet + 54),13) = 0
PixelGetColor(($xlet + 58),10) = 0
PixelGetColor(($xlet + 58),11) = 0
PixelGetColor(($xlet + 58),12) = 0
PixelGetColor(($xlet + 58),13) = 0
PixelGetColor(($xlet + 62),10) = 0
PixelGetColor(($xlet + 62),11) = 0
PixelGetColor(($xlet + 62),12) = 0
PixelGetColor(($xlet + 62),13) = 0
PixelGetColor(($xlet + 64),6) = 0
PixelGetColor(($xlet + 64),9) = 0
PixelGetColor(($xlet + 64),10) = 0
PixelGetColor(($xlet + 64),11) = 0
PixelGetColor(($xlet + 64),12) = 0
PixelGetColor(($xlet + 64),13) = 0
PixelGetColor(($xlet + 67),12) = 0
PixelGetColor(($xlet + 67),13) = 0
PixelGetColor(($xlet + 68),11) = 0
PixelGetColor(($xlet + 68),14) = 0
PixelGetColor(($xlet + 69),14) = 0
PixelGetColor(($xlet + 71),10) = 0
PixelGetColor(($xlet + 71),11) = 0
PixelGetColor(($xlet + 71),12) = 0
PixelGetColor(($xlet + 71),13) = 0
PixelGetColor(($xlet + 74),9) = 0
PixelGetColor(($xlet + 74),10) = 0
PixelGetColor(($xlet + 75),11) = 0
PixelGetColor(($xlet + 77),12) = 0

End Target
FILOO is offline  
Old 05/21/2008, 13:26   #761
 
django23's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 53
Received Thanks: 3
The bot work good, but it don't simulate the pressure of the right button in game, and the arrow of mouse stay ever in the same point, so the camera don't move.
How can I resolve this problem? I'm using Windows XP 32 bit and your bot version is JT's Beta V11.4a.
Thanks for the help.
django23 is offline  
Old 05/21/2008, 18:44   #762
 
elite*gold: 0
Join Date: May 2008
Posts: 2
Received Thanks: 0
It's not working to me
moyagr is offline  
Old 05/21/2008, 19:21   #763
 
elite*gold: 0
Join Date: Dec 2007
Posts: 111
Received Thanks: 17
Hi all
dont work error line-1
meilleur is offline  
Old 05/21/2008, 20:46   #764
 
elite*gold: 0
Join Date: Mar 2008
Posts: 505
Received Thanks: 107
meilleur..more input please....what did u before it crash..whats your hardware ?
any spyware...or anti virii scanner running? MORE INPUT PLEASE
Landa is offline  
Thanks
1 User
Old 05/21/2008, 21:25   #765
 
elite*gold: 0
Join Date: Apr 2008
Posts: 44
Received Thanks: 0
German Client:

Target Name: Kukuri

PixelGetColor(($xlet + 0),6) = 0
PixelGetColor(($xlet + 0),7) = 0
PixelGetColor(($xlet + 0),8) = 0
PixelGetColor(($xlet + 0),9) = 0
PixelGetColor(($xlet + 0),10) = 0
PixelGetColor(($xlet + 0),11) = 0
PixelGetColor(($xlet + 0),12) = 0
PixelGetColor(($xlet + 0),13) = 0
PixelGetColor(($xlet + 0),14) = 0
PixelGetColor(($xlet + 7),8) = 0
PixelGetColor(($xlet + 7),9) = 0
PixelGetColor(($xlet + 7),10) = 0
PixelGetColor(($xlet + 7),11) = 0
PixelGetColor(($xlet + 7),12) = 0
PixelGetColor(($xlet + 8),14) = 0
PixelGetColor(($xlet + 14),6) = 0
PixelGetColor(($xlet + 14),7) = 0
PixelGetColor(($xlet + 14),8) = 0
PixelGetColor(($xlet + 14),9) = 0
PixelGetColor(($xlet + 14),10) = 0
PixelGetColor(($xlet + 14),11) = 0
PixelGetColor(($xlet + 14),12) = 0
PixelGetColor(($xlet + 14),13) = 0
PixelGetColor(($xlet + 14),14) = 0
PixelGetColor(($xlet + 20),8) = 0
PixelGetColor(($xlet + 20),9) = 0
PixelGetColor(($xlet + 20),10) = 0
PixelGetColor(($xlet + 20),11) = 0
PixelGetColor(($xlet + 20),12) = 0
PixelGetColor(($xlet + 21),14) = 0
PixelGetColor(($xlet + 27),8) = 0
PixelGetColor(($xlet + 27),9) = 0
PixelGetColor(($xlet + 27),10) = 0
PixelGetColor(($xlet + 27),11) = 0
PixelGetColor(($xlet + 27),12) = 0
PixelGetColor(($xlet + 27),13) = 0
PixelGetColor(($xlet + 27),14) = 0
PixelGetColor(($xlet + 31),8) = 0
PixelGetColor(($xlet + 31),9) = 0
PixelGetColor(($xlet + 31),10) = 0
PixelGetColor(($xlet + 31),11) = 0
PixelGetColor(($xlet + 31),12) = 0
PixelGetColor(($xlet + 31),13) = 0
PixelGetColor(($xlet + 31),14) = 0

End Target
PimmelJoe is offline  
Closed Thread




All times are GMT +1. The time now is 08:05.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.