|
Post by Izlude on Jan 25, 2005 12:31:48 GMT -5
also i am just using the pixel colour thing to get used to scripting, when i become more scripting litterate i will start to use other ways, faster ways. also if ya can please point out any things you find worng in my script i will be posting a new one soon, i am just trying to edit it as we speak
|
|
|
Post by Izlude on Jan 25, 2005 12:38:48 GMT -5
also using ur pixel cody tiny do i have to have the picture open in ms paint, or have the nm infront of me targeted?
|
|
|
Post by Izlude on Jan 25, 2005 12:52:20 GMT -5
ok here is my script i am doin, i finaaly got the pixel location right, please point out any mistakes :
Global $x = 726 ; X-coordinate for pixel Global $y = 524 ; Y-coordinate for pixel Global $PixelGetColor = ("$x, $y") Global $yellow = 15395528 ; Normal, unclaimed color. Most important. (RGB Decimal value) Global $red = 14782865 ; Color when player has claimed. (RGB Decimal value) Global $purple = (no screenshot) ; Color when claimed by another. (RGB Decimal value) Global $provoke = "!1" ; Provoke macro
WinWaitActive("FFXiApp")
While 1=1
WEnd
while 1=1 Sleep(50) $yellow= 15395528 Send ("!1") WEnd EndFunc
|
|
|
Post by TinyTerror on Jan 25, 2005 15:50:47 GMT -5
It works best to set up a bunch of pixel coordinates in the script before hand. I like to run the game in the windower, get to the mob im looking for, target it, run the script and get the pixels.
|
|
|
Post by Izlude on Jan 25, 2005 18:24:56 GMT -5
well as of now i am quite far away from the nm i camp, so i used the dropper technique, is that ok? also what do ya think of my script, is it good? or what i really want to know, will it work?
|
|
|
Post by Izlude on Jan 25, 2005 18:31:38 GMT -5
also i am not sure what ya mean, u mean like multiple pixel colours? i know his pixel colourand all that stuff for claimed by me, and unclaimed. this aint a afk bot i just want to outvoke the average person
|
|
|
Post by Duke Newrise on Jan 25, 2005 18:43:34 GMT -5
An avergare person that is paying attention can out voke a pixel bot with ease. Your script looks like it will compile now but it still has many logic errors. You have an endless while loop that does nothing. This will be most troublesome and cpu intensive.
|
|
|
Post by Izlude on Jan 25, 2005 18:46:14 GMT -5
ok well this is my first after i get it configured i will use another technique to specificly get 1 monster and only 1 maybe checksums, i dunno but i am still learning also wanna point put any other errors? and what loop is there for nothing? and here is what i have so far(point out any errors):
Global $x = 726 ; X-coordinate for pixel Global $y = 524 ; Y-coordinate for pixel Global $PixelGetColor = ("$x, $y") Global $yellow = 15395528 ; Normal, unclaimed color. Most important. (RGB Decimal value) Global $red = 14782865 ; Color when player has claimed. (RGB Decimal value) Global $purple = (no screenshot) ; Color when claimed by another. (RGB Decimal value) Global $provoke = "!1" ; Provoke macro
WinWaitActive("FFXiApp")
While 1=1
WEnd
while 1=1 Sleep(50) $yellow= 15395528 Send ("!1") WEnd EndFunc
|
|
|
Post by Duke Newrise on Jan 25, 2005 18:50:10 GMT -5
You have:
While 1=1
WEnd
while 1=1 Sleep(50) $yellow= 15395528 Send ("!1") WEnd
It should be:
While 1=1
while 1=1 Sleep(50) $yellow= 15395528 Send ("!1") WEnd WEnd
This will provoke as many mods as you want since the provoker is in an endless loop.
|
|
|
Post by Izlude on Jan 25, 2005 18:57:37 GMT -5
ahhhh thanks alot ^^; now is this baby ready to run? and how can i make it lets say checksum based so that it isn't a pixel bot, so it i faster than the average hand lol
|
|
|
Post by Duke Newrise on Jan 25, 2005 19:01:40 GMT -5
Please use grammer.
Checksum is another pixel method, the only other way out there is FFACT. Which has just been updated.
|
|
|
Post by Izlude on Jan 25, 2005 19:03:32 GMT -5
hehe sorry about that, so ffact is up and running? also, i would like to know how to use ffact, could ya gimme any tips or pointer, or a rundown on how to do it? ok i just downloaded ffact off of the aires site, but i get a error or something when i load it, the error reads: Error 5 (Invalid procedure call or argument) in procedure Form_Load of Form Form1 on line#0
|
|
|
Post by Duke Newrise on Jan 25, 2005 19:17:41 GMT -5
You need to download, install and run AC tools before you can use FFACT. It's kinda werid because you only need to run it once. After that FFACT should work. Also, download FFACT form the FFACT website because that is the most recent.
|
|
|
Post by Izlude on Jan 25, 2005 19:24:32 GMT -5
ok i just did all that and it not works. thanks alot ^^ now how do i use this to turn my script into magic? i just need the basics i think, it looks pretty explanitory. do i go and target the mob or what?
|
|
|
Post by Izlude on Jan 25, 2005 19:33:19 GMT -5
ok i tested it out and i got all this crazy info, i didn't target a npc i just tried myself, and i dont think it worked, under player there is alot of crazy info, but under target there is none. any suggestions on how to use this sucker?
|
|