Page 1 of 1

its possible to enter a command that only stealth read?

Posted: 06.05.2020 12:29
by 01101011
I trying make script react a especifc commands, but i don't like to show the command in journal to everybody, i tryed to use "/", but i'm alone and can't create party (and stealth can't read "Note to self:" in journal), "\" but i don't have guild and "," but chat not enabled in my shard. Any option like read() or open text box to enter the commands?

i know stealth read txt, but i need fast reaction comands.

ty for att boys =]

Re: its possible to enter a command that only stealth read?

Posted: 06.05.2020 15:08
by Vizit0r
no.
Use hotkeys. F.e. methods, which will set globalvar value.

Re: its possible to enter a command that only stealth read?

Posted: 06.05.2020 17:38
by 01101011
hotkey doesn't work for me, i need get a value
but i can use journal, ty bro =]]

Code: Select all

lastmsg := LastJournalMessage;  
Delete(lastmsg,1,Pos(':',lastmsg)+1);             
if lastmsg = 'get' then
begin
    Get;   
    wait(100);
    TimeI := Now;
end;
if lastmsg = 'mark' then
begin   
    Mark;     
    wait(100);
    TimeI := Now;
end;
if StrToInt(lastmsg) >= 0 then
begin 
    Grab(soss[StrToInt(lastmsg)]);
    wait(100);
    TimeI := Now;
end;