Page 1 of 1

Is there a way to prevent Stealth echoing to journal? [No]

Posted: 19.03.2017 1:06
by bounds
Is there a way to prevent Stealth from echoing to the game journal? For example, see the pink text in this picture after using a smelt script:
Picture
Image

Code: Select all

# ...

# Find first item
FindItemEx(-1, -1, smeltBox, True)
toSmelt = FindItem()

while toSmelt != 0:
    Ignore(toSmelt)
    WaitGump('14') # Click smelt item button (prints to journal)
    WaitTargetObject(toSmelt) # Target found item (prints to journal)
    Wait(500)

    # Find next item
    FindItemEx(-1, -1, smeltBox, True)
    toSmelt = FindItem()
 

Re: Is there a way to prevent Stealth echoing to journal?

Posted: 20.03.2017 16:47
by drabadan
why not?

Re: Is there a way to prevent Stealth echoing to journal?

Posted: 20.03.2017 19:32
by Vizit0r
no way

Re: Is there a way to prevent Stealth echoing to journal?

Posted: 20.03.2017 23:51
by bounds
Vizit0r wrote:no way
Good to know. Thanks.
drabadan wrote:why not?
Are you asking why I'd want this? If so, I was just looking to simplify the journal output. Less journal scrolling and screen spam.