Libellule
Cthulhu
- Joined
- Oct 21, 2013
- Messages
- 379
- Reputation score
- 277
on witch game ? that will look at thatThe cliplogger only shows 「ポップアップブロックによってブロックされました。」 instead of the real text. Translated its something about popup blocker. Does the cliplogger use any browser plugins?
we can look to create a RegEx to delete this flooding blockwhat should I do if hp and mp endless loop(see screenshot) and bury is the text in a instant?
^HP(|。)\d{1,3}(|。)\/(|\d{1,3})(|。)MP(|。)\d{1,3}(|。)\/(|\d{1,3})(|。)TP(|。).*HP(|。)\d{1,3}(|。)\/(|\d{1,3})(|。)MP(|。)\d{1,3}(|。)\/(|\d{1,3})(|。)TP(|。).*State.*($|.$|。$)
This might be a bit offtopic but still relevant though. Is there any plugin or way to force older RPGmaker games to skip text. Many games have it but some do not and so annoying!
Something similar for RPGmakerVX and so on?
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
$V::
While GetKeyState("V","P"){
Send z
Sleep 10
}
return
yeah, some MV game have memory link, they often come from some plugin used (lot of pre-load image plugin, i personaly often disable themRPGMaker MV games keep crashing after some time. Not sure if its the logger or not. Maybe there is a memory leak somewhere?
Has anyone experienced similar problems.
I want to try out and use your hooker, but i can not download any file from here:
You must be registered to see the links
I used "Mozilla Firefox" and "Epic" Browser (both have addblock on.)
Please upload on "Mega" or "Zippyshare".
The extractors on first page here i could download.
M-77
How do you disable them?yeah, some MV game have memory link, they often come from some plugin used (lot of pre-load image plugin, i personaly often disable them)
Do you have a solution for RJ186234? This is what it's flooding during combat (it's the names of the characters)we can look to create a RegEx to delete this flooding block
but i will need to see exactly how the flood is, your screen is to little XD... i dont see anything
can you send me by PM some example of the flooding text (just copy/paste from cliploger)
the game name/RJ.number can help too, if i need a better look that just some example
「アイリス。」
「サーシャ。」
「リリア。」
「ライデン。」
in the plugin.ini, you can enable/disable any plugin by changin there status to true/falseHow do you disable them?
Do you have a solution for RJ186234? This is what it's flooding during combat (it's the names of the characters)
Code:「アイリス。」 「サーシャ。」 「リリア。」 「ライデン。」
^(アイリス|サーシャ|リリア|ライデン)。$
try :
Code:^(アイリス|サーシャ|リリア|ライデン)。$
i cant test it myself before this evening when i come back home ^^