sdphantom
Full Member
Savior and Destroyer
Posts: 230
|
Post by sdphantom on Feb 20, 2006 20:55:26 GMT -5
Ok then.... there went that fun! The FFXI update has rendered some of the Lunar functions useless. Not a surprise I guess, but a little bit of a bummer. Gonna go see what other function are broke. I noticed some of the functions like FFXI.player_GetStatus() have been broke ever since the December 12th update.
|
|
gaz
New Member
Posts: 27
|
Post by gaz on Feb 21, 2006 3:54:15 GMT -5
Only some get status's worked for me; I could'nt use "if fishing", but i could use "if standing" and "if healing".
Also, get distance i've had problems with; as described in my post under script discussion.
|
|
sdphantom
Full Member
Savior and Destroyer
Posts: 230
|
Post by sdphantom on Feb 21, 2006 18:15:15 GMT -5
Weird, none of the statuses worked on my system since the Dec 12th update, the function always returned zero.
|
|
|
Post by X-Drop on Feb 21, 2006 23:16:59 GMT -5
Weird, none of the statuses worked on my system since the Dec 12th update, the function always returned zero. hmmm... strange indeed. They all worked fine for me till the 20th. So you never got to test out Leviathan?
|
|
sdphantom
Full Member
Savior and Destroyer
Posts: 230
|
Post by sdphantom on Feb 22, 2006 1:52:23 GMT -5
Weird, none of the statuses worked on my system since the Dec 12th update, the function always returned zero. hmmm... strange indeed. They all worked fine for me till the 20th. So you never got to test out Leviathan? I never even downloaded the script until recently to take a look at the code. The Dec 12th update wiped out my smn skill script along with my travel scipt, so I wrote a test script that goes through all the FFXI functions and displays the results of every function. Almost all of the target functions with player name, position, and heading were broken on my system. Here's the test script. I had to put in a special case for a few of the chat functions to run. txtObj=Graphics.text_CreateObject() Graphics.text_SetPosition(50,50,txtObj) Graphics.text_SetColor(255,255,255,255,txtObj) Graphics.text_SetFont("Arial Bold",12,txtObj)
while true do
opt="" for i,j in FFXI do if not string.find(i,"chat") then opt=opt..i.." = "..tostring(j()).."\n" end end
local newLine=FFXI.chat_GetNewestLineNumber() for i,j in FFXI do if string.find(i,"chat") then if string.find(i,"LineNumber") then opt=opt..i.." = "..tostring(j()).."\n" else opt=opt..i.." = "..tostring(j(newLine)).."\n" end end end
Graphics.text_SetText(opt.."\n"..os.clock(),txtObj) end
I made it display os.clock() at the bottom to show that the script was updating and not frozen.
|
|
|
Post by andyobe on Feb 28, 2006 0:52:45 GMT -5
This is my frist time using these script and Im having difficulties.
I got Leviathan loaded, with the icons and words along the right hand side, but how do I get my character to start fishing?
|
|
sdphantom
Full Member
Savior and Destroyer
Posts: 230
|
Post by sdphantom on Feb 28, 2006 1:10:51 GMT -5
This is my frist time using these script and Im having difficulties. I got Leviathan loaded, with the icons and words along the right hand side, but how do I get my character to start fishing? Currently, all FFXI memory functions except chat are broken. Tiny says he should have the new version of Lunar up with this fixed in a few weeks.
|
|
|
Post by andyobe on Feb 28, 2006 1:12:19 GMT -5
oh, ok... and I thought i'm the only one : P
thanks : )
|
|
|
Post by viking on Mar 26, 2006 4:32:33 GMT -5
Hi i'm very knew to scripting and I had a question about this script. I can load it up in game and have done everything you said to do (I think) but it will not do anything. It says Welcome Viking! That message never disapears and the status to the left does not change even when I fish. There is no fish info at all. Is it broken or am I doing something wrong? Anything you can think of off the top of your head? -Thanks
|
|
|
Post by TinyTerror on Mar 26, 2006 8:25:21 GMT -5
The script just really likes you! You are always welcome to use leviathon!
Sorry, I've got nothing.
|
|
|
Post by X-Drop on Mar 26, 2006 21:50:27 GMT -5
Hi i'm very knew to scripting and I had a question about this script. I can load it up in game and have done everything you said to do (I think) but it will not do anything. It says Welcome Viking! That message never disapears and the status to the left does not change even when I fish. There is no fish info at all. Is it broken or am I doing something wrong? Anything you can think of off the top of your head? -Thanks Come on now.... how do you miss the very first line of the thread?? Do not download. Broken since 02/20/06
|
|
|
Post by viking on Mar 27, 2006 3:05:39 GMT -5
Oh yea... Sorry. Will you be coming out with a fixed version any time soon X-Drop?
|
|
|
Post by TinyTerror on Mar 27, 2006 8:08:59 GMT -5
Its not leviathon that busted, its Lunar. I'm working as hard as I can to get the next version out!
|
|
|
Post by nopantsdance on Mar 27, 2006 18:34:34 GMT -5
I'm so excited, I downloaded leviathan right after the feb update and I've been wanting to try it so bad!
|
|
|
Post by TinyTerror on Mar 27, 2006 22:33:07 GMT -5
Well the code is finished for the new version. Starhawk and I just need to wrap up a few minor things and do some more testing before a feature test release. Too bad I'm booked solid all week. I should be able to get some code written saturday or sunday.
|
|