Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Djazlizh

Pages: [1]
1
Script Debug / I can't locate your archery weapon
« on: November 15, 2013, 01:12:48 AM »
I got this part of a script I try to use, but it gives me an error and stops, it says  : I can't locate your archery weapon
I play on a freeshard called ABCUO, dont know if it has anything to do with that ?


Script part below :


Code: [Select]
sub SetupWeapon
  finditem %1 C_ , #CHARID
  if #FINDKIND = -1
  {
    finditem %1 C_ , #BACKPACKID
    if #FINDKIND <> -1
    {
      if #FINDTYPE in PPO
        set #LHANDID %1
      else
        set #RHANDID %1
    }
    else
    {
      display ok I can't locate your archery weapon
      stop
    }
  }
  else
  {
    gosub DisarmWeapon
  }
  if #FINDTYPE in %crossbowtypes
  {
    menu Font BGColor BtnFace
    menu delete EUOLabel32
    menu Text EUOLabel32 176 196 Bolts
    set %ammotype LNK ; LNK - crossbow bolts
  }
  else
  {
    menu Font BGColor BtnFace
    menu delete EUOLabel32
    menu Text EUOLabel32 176 196 Arrows
  }
return

Post Merge: November 15, 2013, 03:21:37 AM
I found a work around and made it work now.... thanks :-)

2
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 14, 2013, 04:48:19 AM »
Gets stuck in a loop saying:

Code: [Select]
You must first disarm a weapon before you can arm one.
You must wait to perform another action.
You must wait to perform another action.
The fishing pole must be equipped first.

For my purposes, I'm going to see if I can just edit out the arm/disarming code.

If that works, I'll try to figure out a way to detect if anything is equipped, THEN run the arm/disarm, ELSE go to equipping the pole.

Hope that makes sense and don't let my weak attempts at butchering your code prevent you from putting up an actual solution! heh!

EDIT: Ok, I removed the arm, disarm code and it appears to have worked.  I'll watch it for a few to be sure, but it did equip the pole and start fishing.

I'm going to make an attempt to detect if the character has a weapon in either hand, THEN have that hand unequip, then or else have it equip the pole.  Should work.  Maybe.  Gotta figure out how to detect what might be carried.  :P

Hey, it seems like you made it work, can you share more acurate what you did, since I dont know much about scripthing :D
I get samme error message as you, so what did you do and where to make it work ?

3
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 13, 2013, 09:26:43 AM »
read the thread afterwards, there's some help there.

Sorry that dosent tells me anything, my problem is I dont know how to make script awork t all, thats why I am here to hopefully get help. I know you dont support it, but I hoped maybe some others might wanna help me out :-)

But no spellbook dont equip at my server either when I cast a spell.

4
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 12, 2013, 01:24:03 PM »
This might cause more problems, but also might work.

Add this sub to the script at the end:

Code: [Select]
sub EquipFishingPole
  finditem XHF_KDF C_ , #CHARID
  if #FINDCNT = 0 ; must de-equip fishing pole
  {
    event macro 24 1 ; disarm weapon to setup - left
    wait 10
    event macro 24 2 ; disarm weapon to setup - right
    wait 10
    finditem XHF_KDF C_ , #BACKPACKID
    if #FINDCNT = 0
    {
      display ok I cannot locate your fishing pole - stopping script.
      stop
    }
    set #RHANDID #FINDID
    event macro 24 2
    wait 20
  }
return

and then around line 123 of the FaF, modify this:

Code: [Select]
...
  menu set EUOStatus Fishing...
  gosub RefreshBoat
  gosub EquipFishingPole ; <--  you just added this line to the main loop
  gosub FastFishup
  set %temp ( ( #SCNT - %loottime ) / 60 )
  if ( %temp > 15 ) || ( %nofish > 4 ) ; 15 minutes in a spot will cause advance forward
...

Note you just added one line to the main loop.

I added these to Things, but mine just say "You must first disarm a weapon in order to arm one"
That Means that it dosent equip my fishing pole after I have killed a serpent. Anyone got a clue on what I could add or something ?

5
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 12, 2013, 06:57:08 AM »
Hey TrailMyx, I think you are right, I am playing on a private server called ABCUO (http://www.abcuo.com/)
So that meens there is nothing I can do to make the script run the right way ?

6
New member introductions / Re: Hello everyone, a little bit about me !
« on: November 11, 2013, 10:57:51 PM »
Thanks all for the welcomeing...... But yes Denmark is a wonderful place in so many ways and have often been in the top 3 best Places to live in contest, last some months ago on CNN I belive :-)
http://edition.cnn.com/2013/09/09/business/earth-institute-world-happiness-rankings/
and
http://edition.cnn.com/2013/10/02/travel/copenhagen-travel-bourdain-10-things/

So as you can read we are very happy :-)

About "The Realm Online" it was a game made by Sierra back 1996, and has sinces been sold 2 times. The sad part is even that you can still play the game and it cost Money, they dont Work on it anymore and dont wanna sell it to those that wanna keep having fun about it :-(
http://en.wikipedia.org/wiki/The_Realm_Online

7
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 11, 2013, 10:50:01 PM »
I have a little problem, it all runs well until it have gated to bank and back to the boat again, then it stops. It still says Bank run in the bottom and it dosent equip my fishing pole and continue the script.
What can I be doing wrong ?

Just found out it dosent equip my fishingpole and start again after killing a serpent either :-(

8
New member introductions / Hello everyone, a little bit about me !
« on: November 11, 2013, 12:36:02 AM »

9
Gold Farming / Re: TrailMyx's Full Auto Fisherman
« on: November 10, 2013, 10:33:00 PM »
I have been looking on every message in this post and I just cant find the script files. When people answers they say its in the very first post. But there is nothing to download in the first post, and the written script to copy from is only some info lines, so my question again is, where do I find this Fisherman script ??

Plz anyone :-)

Pages: [1]