Jump to content

Recommended Posts

Posted (edited)

Anyone know how to upload ini files? I can't seem to upload the ini file

EDIT: This forum doesn't allow ini file uploads, I rared everything

Edited by BotXpert
Posted

Anyone know how to upload ini files? I can't seem to upload the ini file

R u refern to Iniread and Iniwrite ?

look in help for example

<- Paid ME $89.65
  • 1 month later...
Posted

I tried this script, but it doesn't work for me. I have the german version of lotro, but even with language changes in the script it did not work.

I tried only the travel function, I set the locBindings correct, but there is always an error message that it cannot receive locations, but location logging works, anything is set correctly.

I think I rewrite the whole script.

And if i start the script I get : ERROR: SetupAutoXpBot(): undefined function.

SetupAutoXpBot()

The setupAutoxpBot() Function is missing in the script. You could continue, but I dont know if this is important.

And as a hint: you can loot only with keyboard, you do not need this with mouse.

Posted

I tried this script, but it doesn't work for me. I have the german version of lotro, but even with language changes in the script it did not work.

I tried only the travel function, I set the locBindings correct, but there is always an error message that it cannot receive locations, but location logging works, anything is set correctly.

I think I rewrite the whole script.

And if i start the script I get : ERROR: SetupAutoXpBot(): undefined function.

SetupAutoXpBot()

The setupAutoxpBot() Function is missing in the script. You could continue, but I dont know if this is important.

And as a hint: you can loot only with keyboard, you do not need this with mouse.

update:

now the Location error is fixed, but now the Patrol/travel function dont work, I always run in a little circle.

Posted

Awsome work man! You have really put much effort into this.

I'm not playing LotrO but I am interested in game-bots/hacks etc. overall and this is an excellent peice of work!

If I could I would +rep you but you cannot do that in these forums :)

Posted (edited)

Meum, your problem is the localized version.

In German the /pos message is:

Ihr befindet Euch hier: r1 lx990 ly969 ox133.11 oy33.46 oz419.88 h19.7

As you can see, there are alot of "h" inside :)

Now check this out:

Func GetPositionData()
[..]
    $PosOfH = StringInStr($LastLine, "h")
[..]

    If $PosOfH = 0 Then
;If there is no H then you are facing due north, set heading to 0 and return     <--- ATTENTION
        $Heading = 0
    Else
        $Heading = StringTrimLeft($LastLine, $PosOfH)
    EndIf
EndFunc;==>GetPositionData

In German there will never be no "H" in the $Lastline... and also the PosOfH will not work correct.

Edited by Siffy
Posted

Meum, your problem is the localized version.

In German the /pos message is:

Ihr befindet Euch hier: r1 lx990 ly969 ox133.11 oy33.46 oz419.88 h19.7

As you can see, there are alot of "h" inside :)

Now check this out:

Func GetPositionData()
[..]
    $PosOfH = StringInStr($LastLine, "h")
[..]

    If $PosOfH = 0 Then
;If there is no H then you are facing due north, set heading to 0 and return     <--- ATTENTION
        $Heading = 0
    Else
        $Heading = StringTrimLeft($LastLine, $PosOfH)
    EndIf
EndFunc;==>GetPositionData

In German there will never be no "H" in the $Lastline... and also the PosOfH will not work correct.

Thank you Siffy, you just made my day
  • 3 weeks later...
Posted (edited)

Meum, your problem is the localized version.

In German the /pos message is:

Ihr befindet Euch hier: r1 lx990 ly969 ox133.11 oy33.46 oz419.88 h19.7

As you can see, there are alot of "h" inside wink.gif

Now check this out:

Func GetPositionData()
[..]
    $PosOfH = StringInStr($LastLine, "h")
[..]

    If $PosOfH = 0 Then
;If there is no H then you are facing due north, set heading to 0 and return     <--- ATTENTION
        $Heading = 0
    Else
        $Heading = StringTrimLeft($LastLine, $PosOfH)
    EndIf
EndFunc;==>GetPositionData

In German there will never be no "H" in the $Lastline... and also the PosOfH will not work correct.

so what do i have to change???

ne0.ka1n

Edited by parad0x
Posted

If you guys make me a list of everything that you have to change, I will incorporate it into the script, and just have a toggle bit on/off for German or English clients.

  • 4 weeks later...
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...