[REQUEST] Auto Type /afk

Status
Not open for further replies.

kokom7

Active member
Joined
Nov 4, 2016
Messages
31
Reaction score
1
Location
United Kingdom
Hello   :ugbase:  members...
All of you can make a cleo like, automatically typing /afk if got this message

{FF6347}Anda telah memasuki AFK mode!, ketik /afk untuk lanjut main
this the image:
H4iVjTm.png


yeah like that... if that message showed in chatbox, i want it automatically typing /afk , it's make me can sleep without typing /afk as shit..
Please i really need this..   :pPFFH: , and i want this will be auto-on  :pPFFH: :yesyes: :yesyes: :yesyes:
 

kokom7

Active member
Joined
Nov 4, 2016
Messages
31
Reaction score
1
Location
United Kingdom
do you understand my post or not? -,-


i've updated the post thread, you can see it again., can u make it plz?
 

Labib

Member
Joined
Aug 17, 2014
Messages
7
Reaction score
0
WTF anak JGRP ini wkwk :v itu SS foto /afk nya text JGRP dasar admin goblog :v
 

ARevolutionT1

Member
Joined
Nov 19, 2016
Messages
7
Reaction score
0
ah dasar, gw mah gak pake /afk, tapi pake bot, itu jgrp yah ? kwkwk gw juga maen disitu, nih gw kasih link http://ugbase.eu/Thread-Anti-AFK-for-rp-server-by-san0
enakin buat nunggu jail atau delays job kwkwkw.

hadeh mod gratis, pas minta suruh bayar kwkw. #noobsagnadbocah
 

MrChristmas

Expert
Joined
Jul 29, 2014
Messages
563
Reaction score
26
stop speaking other languages than English, is it that hard to understand?
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
There are a lot of examples on how to read from chat and extract certain words.
http://ugbase.eu/Thread-Help-with-cleo--16507?page=1 this guy made something similar.
 

alberto98

Member
Joined
Feb 5, 2017
Messages
8
Reaction score
0
kokom7 said:
Hello   :ugbase:  members...
All of you can make a cleo like, automatically typing /afk if got this message

{FF6347}Anda telah memasuki AFK mode!, ketik /afk untuk lanjut main
this the image:
H4iVjTm.png


yeah like that... if that message showed in chatbox, i want it automatically typing /afk , it's make me can sleep without typing /afk as shit..
Please i really need this..   :pPFFH: , and i want this will be auto-on  :pPFFH: :yesyes: :yesyes: :yesyes:

You can use autohotkey script for this.
1. Download autohotkey and intall it.
2. Right click on your desktop and create a new file with autohotkey type.
3. Delete contain and put it:
    Loop
{
   FileGetSize, Size, PUT HERE CHATLOG LOCATION\chatlog.txt
   If (Size > FileSize)
   {
       FileSize := Size
       Loop
       {
           FileReadLine, Read, PUT HERE CHATLOG LOCATION\chatlog.txt, % A_Index + LineIndex
           if ErrorLevel
           {
               LineIndex += A_Index - 1
               break
           }
           NewLines .= Read "`n"
       }
       if NewLines ~= "Anda telah memasuki AFK mode!, ketik /afk untuk lanjut main"
     {
        SendInput t/afk{Enter}
     }
   }
   NewLines := ""
  Sleep, 500
}
 

mistery

Well-known member
Joined
Apr 23, 2014
Messages
262
Reaction score
5
Code:
~F2::
setbatchlines, -1
setkeydelay, -1
Loop
{
   FileGetSize, Size, PUT HERE CHATLOG LOCATION\chatlog.txt
   If (Size > FileSize)
   {
       FileSize := Size
       Loop
       {
           FileReadLine, Read, PUT HERE CHATLOG LOCATION\chatlog.txt, % A_Index + LineIndex
           if ErrorLevel
           {
               LineIndex += A_Index - 1
               break
           }
           NewLines .= Read "`n"
       }
       if NewLines ~= "Anda telah memasuki AFK mode!, ketik /afk untuk lanjut main"
     {
        SendInput {t}/afk{Enter}
     }
   }
   NewLines := ""
  Sleep, 500
}
F3::reload
return


i put activation,just in case
:) f2-on / f3-off
 
Status
Not open for further replies.
Top