|
 FFXIService 2.x now with FishID, Gil, Exp, and more! : Site News - Page 18
|
|
Posted: June 27th, 2007, 10:10 am
|
|
|
|
wyvernx
Total Posts: 6718
Joined: May 1st, 2004, 4:00 am
wyvernx's Reps: 21
|
Posted the Update.
Be sure your version updates to x.x.12
_________________
Use Search first, ask questions later!
|
|
|
|
|
Posted: June 27th, 2007, 9:01 pm
|
|
|
|
lurkerx5
lurkerx5's Reps:
|
so what do we do if it doesn't update to .0.0.12? manually install it again?
EDIT: NVM, didn't realize that it doesn't update the plugin list untill you restart XU
|
|
|
|
|
Posted: June 28th, 2007, 9:13 am
|
|
|
|
vistasc79
vistasc79's Reps:
|
Wyvern,
Is there a function that show if the mob is claim by another user? I checked through the ffxi service and I didnt see one. The reason I am asking this is if I use my bot to farm it will target a mob that is claim.
I can do a quick fix around by checking if the mob is 100%HP but sometime that will not be the case if they use provoke to claim it. In that case my bot will be following the mob which look like I am really botting from other user.
Thanks.
|
|
|
|
|
Posted: July 7th, 2007, 2:11 am
|
|
|
|
_drohk_
_drohk_'s Reps:
|
I just wanted to say thanks to XU for this incredible bot... it has never failed me in its time of use... but one thing that I may ask some assistance of.
Does anyone have the ID for "Devil Manta" it is a mob fished up in Cape Terrigan (sp?) and I looked on the database and on the forums and all i can come up with is weight factor that this bot used to work with. It seems that works quite well, but some mis-haps have made me want to try to convert to the Hex ID for this.
Any ideas?
Drohk
|
|
|
|
|
Posted: July 30th, 2007, 9:55 am
|
|
|
|
sebrina
sebrina's Reps:
|
I'll be installing FFXI tonight let you know how it goes tomorrow!
EDIT: Went well please help me fix my code below, I must be doing something wrong.
Last edited by Guest on July 31st, 2007, 3:26 pm, edited 3 times in total.
|
|
|
|
|
Posted: July 31st, 2007, 12:01 pm
|
|
|
|
sebrina
sebrina's Reps:
|
sorry I hit submit a few times and apparently it posted a few times in a row, please delete.
Last edited by Guest on July 31st, 2007, 3:23 pm, edited 2 times in total.
|
|
|
|
|
Posted: July 31st, 2007, 3:17 pm
|
|
|
|
sebrina
sebrina's Reps:
|
sorry I hit submit a few times and apparently it posted a few times in a row, please delete.
Last edited by Guest on July 31st, 2007, 3:23 pm, edited 1 time in total.
|
|
|
|
|
Posted: July 31st, 2007, 3:20 pm
|
|
|
|
sebrina
sebrina's Reps:
|
Ok after some searching I have XU working correctly execpt the id part, I have tested all the other fish scripts and they all work properly but when I try to fish by id for moat carp, tricolored carp and gold carp with this code:
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): ' Include variables declaration XUScriptHost.ImportScript("xufish\fisher_variables.vbs")
scriptTimeInterval = 60
' Declare events function onChangeZone ' Beep if not scriptPaused then ForcePause Win32API.XUBeep 750,1000 end if end function
function onStateChange ' Do nothing end function
function onScriptTimeInterval ' Just beep three times Win32API.XUBeep 750,1000 Sleep(250) Win32API.XUBeep 750,1000 Sleep(250) Win32API.XUBeep 750,1000 end function
function onMonsterCheck ' Do nothing end function
function onNoBait ForcePause end function
function getFishPoleHash(ByRef obj) on error resume next obj.UpdateData getFishPoleHash = obj.FishPoleHash if (Err.Number <> 0) then getFishPoleHash = -1 end if on error goto 0 end function
function doBite Dim w w = getFishPoleHash(serviceObject) 'Get your ID's from the log after you catch one. writeLogLine ("Caught something with ID: " & hex(w)) if (w = &H0CC8100B OR w = &H0E04130D OR w = &H0C2C120C) then 'This is my moat carp script. doBite = true else Sleep 200 doBite = false end if end function
' Include and start main script XUScriptHost.ImportScript("xufish\fisher.vbs") onBiteAdv = "doBiteAdv" runFisher
It works but lets everything go and cancels everything I got those ids from the fishing db site but they do not work with my halcyon rod and the fish posted above.
I've also tried changing the second doBite = in the script but didn't seem to help, besides I think even if it did it would just cast and try to reel in anything anyway.
|
|
|
|
|
Posted: July 31st, 2007, 3:25 pm
|
|
|
|
sebrina
sebrina's Reps:
|
Also I'd like to note that the ids in the fishing database do not work correctly with the scripts I've tried up to 10.
Can you please post an example script to get ids myself? I've tried the 2 posted by users on this thread neither worked, after checking all 3 logs (xu log, ffxi log, or the xufish log) theres no hex id I have no idea where to look for these and there is NO documentation explaining where they are logged just some example of a fish/bait combo I would probably never use, please explain this better.
Some log examples:
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): [Wednesday, August 01, 2007 9:25:03 PM] Lost the catch. [Wednesday, August 01, 2007 9:25:07 PM] Trying to fish: normal. [Wednesday, August 01, 2007 9:25:10 PM] Parse result: (7B) You were unable to change your equipped items. [Wednesday, August 01, 2007 9:25:11 PM] Parse result: (40) You Target: [Wednesday, August 01, 2007 9:25:11 PM] Fishing. [Wednesday, August 01, 2007 9:25:37 PM] Parse result: (94) Something caught the hook! [Wednesday, August 01, 2007 9:25:37 PM] Current catch is not heavy. [Wednesday, August 01, 2007 9:25:37 PM] Parse result: (94) You have a good feeling about this one! [Wednesday, August 01, 2007 9:25:37 PM] Current catch is easy. [Wednesday, August 01, 2007 9:25:37 PM] Something caught the hook, onBiteAdv overriding onBite. [Wednesday, August 01, 2007 9:25:37 PM] This fish weighs 461 [Wednesday, August 01, 2007 9:25:37 PM] Error encountered in onBiteAdv: Type mismatch, Microsoft VBScript runtime error [Wednesday, August 01, 2007 9:25:37 PM] Something caught the hook but onBiteAdv forced us to ignore it! Stamina: 461, heavy: False, difficulty: 1 [Wednesday, August 01, 2007 9:25:41 PM] Parse result: (40) You Target: Fish [Wednesday, August 01, 2007 9:25:41 PM] Lost the catch. [Wednesday, August 01, 2007 9:25:41 PM] Parse result: (94) You give up and reel in your line. [Wednesday, August 01, 2007 9:25:46 PM] Trying to fish: normal.
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): 08/01/07 09:27:33 PM 40:You Target: Fish
08/01/07 09:27:36 PM 94:You give up and reel in your line.
08/01/07 09:27:44 PM 7B:You were unable to change your equipped items.
08/01/07 09:27:45 PM 40:You Target:
08/01/07 09:28:13 PM 94:You didn't catch anything.
08/01/07 09:28:22 PM 7B:You were unable to change your equipped items.
08/01/07 09:28:54 PM 94:Something caught the hook!
08/01/07 09:28:54 PM 94:You have a good feeling about this one!
08/01/07 09:28:55 PM 40:You Target: Fish
08/01/07 09:28:58 PM 94:You give up and reel in your line.
08/01/07 09:29:05 PM 7B:You were unable to change your equipped items.
08/01/07 09:29:06 PM 40:You Target:
08/01/07 09:29:36 PM 94:Something caught the hook!
08/01/07 09:29:36 PM 94:You don't know if you have enough skill to reel this one in.
08/01/07 09:29:37 PM 40:You Target: Fish
08/01/07 09:29:41 PM 94:You give up and reel in your line.
Do you see any hex ids? Please someone respond.
|
|
|
|
|
Posted: August 11th, 2007, 10:41 am
|
|
|
|
deadwire
deadwire's Reps:
|
ok im pulling us back to this error cus im trying every thang to try and get this to work and im realy good at geting thes scripts to work right , but this time i having no luck what so ever , iv read all the posts on this error on this page from ather ppl and i see one post that say that wyvenx has posted a update to fix this but i dont see the update inywere , if it is the one on the front page under Announcements , this update has not fix the error im still get Error: Cannt find the .tlb file. Place it in the same directory as the .dll[/u], wyvenx can you please recheck your FFXIService 2.x cript so it dos not make this error win ppl are installing it  [/url]
|
|
|
|
|
Posted: August 16th, 2007, 9:09 pm
|
|
Posted: August 16th, 2007, 9:53 pm
|
|
|
|
wyvernx
Total Posts: 6718
Joined: May 1st, 2004, 4:00 am
wyvernx's Reps: 21
|
I just checked the ftp folder, the tbl file is there. Check yoru FFXIService folder for it.
_________________
Use Search first, ask questions later!
|
|
|
|
|
Posted: August 19th, 2007, 12:15 am
|
|
|
|
fishingbot007
fishingbot007's Reps:
|
@ wyvernx
Have the same Problem. I see the file in the same Place but i ever get this message "Error: Cannt find the .tlb file. Place it in the same directory as the .dll"
Somewhere here you were writing to start it manual or something like that... i don't know what you meen... i started it from this directory "D:\Games\FFXI\XUnleashed\Plugins\FinalFantasyXI\FFXiService" and there i klicked the XUnleashed.InstallFile ; ;
OMG i have so many trouble with XU i will see it working /cry
Edit: OK i find now how to manual install it. don't know that you meen install inside of Xunleashed.
Now my next Problem. (I will run XUfish and this Servisthing is my current problem)
asl18fs (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))): FAQ! (Frequently Asked Questions)q) I failed english class but want to use the ph47 1337 fishing script now to catch moat carpzor!!!!! I also failed to read the instructions above! Please heplzor mezor zomg!!!!1111oneoneoneshiftonea) Download XUnleashed Run the program and let it patch Close the program Download the ffxiService by WyvernX Run the xui file and let xunleashed patch Close XUnleashed Open the ffxi config utility Enable hardware mouse cursor Close the ffxi config utility Open the pol config utility Enable windowed mode for playonline Close the pol config utilityDownload XUFish 3.5.2 (or later version) Extract the rar file to your Xunleashed Scripts folder, make sure you have a file called "fisher_basic.vbs" and a folder called "xufish" directly in your Scripts folder Launch XUnleashed Open the options tab and select ffxi in the list of games Click the windowed and dialog checkboxes if you want to play in windowed mode Click the xunleashed tab and click play Log on to your ffxi character Make an alt+1 macro that looks like this: (!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): /equip ammo "Insect Ball" /wait 2 /fish Make an alt+2 macro that looks like this: (!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): /equip ammo "Insect Ball" /fish Go into the config menu and enable compact keyboard Press ctrl+alt+3 and select fisher_basic.vbs in the list Click run
I marked my next problems red  Where do i open the ffxi config utility? Inside Xunleashed? The script is now under plugins with Version
2.0.0.12 and Status OK. Can i run this Plugin to set something? or what must i do now?
|
|
|
|
|
Posted: August 19th, 2007, 3:33 am
|
|
|
|
wyvernx
Total Posts: 6718
Joined: May 1st, 2004, 4:00 am
wyvernx's Reps: 21
|
It comes with FFXI. Try something like Start->FFXI->Pol Manager or whatever it is->FFXI Config Utility
_________________
Use Search first, ask questions later!
|
|
|
|
|
Posted: August 21st, 2007, 1:12 am
|
|
|
|
fishingbot007
fishingbot007's Reps:
|
"config menu and enable compact keyboard"
omg where must i do this? and when i hit ctrl+alt+3 nothing happens >< i must open the xunleashed menu right? if i chose there fisher_basic.vbs 1-2 sec later the message "All scripts stoppt" is there ; ;
|
|
|
|
|
Who is online |
|
Users browsing this forum: No registered users and 20 guests |
|
|
|