Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

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

Ask for help
Post Reply
bounds
Posts: 4
Joined: 19.03.2017 0:46

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

Post 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()
 
Last edited by bounds on 27.03.2017 7:00, edited 1 time in total.
drabadan
Expert
Expert
Posts: 730
Joined: 13.12.2012 17:35
Contact:

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

Post by drabadan »

why not?
User avatar
Vizit0r
Developer
Developer
Posts: 3958
Joined: 24.03.2005 17:05
Contact:

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

Post by Vizit0r »

no way
"Пишите код так, как будто сопровождать его будет склонный к насилию психопат, который знает, где вы живете". (с) Макконнелл, "Совершенный код".
bounds
Posts: 4
Joined: 19.03.2017 0:46

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

Post 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.
Post Reply