How to use modded clients with Kongregate
Been trying to get this to work for a while. Simple solution is to use a browser instead of the flash projector.
As a user of Kongregate, you should know about this tutorial:
https://forums.wildshadow.com/node/27826
which guides you through finding the parameters necessary to run Kongregate through a flash projector.
Have all the parameters including the initial "?" copied. Open the modded client in Chrome or Firefox and paste the parameters to the end.
The address bar should read something like:
file:///C:/Users/Administrator/Desktop/mod.swf?kongregate_username=[USERNAME]&kongregate_user_id=[USER_ID]&kongregate_game_auth_token=[TOKEN]&kongregate_api_path=[API_PATH]
Bookmark the address for easy access.
If you are a user of Quickspeech or some other AHK program that is designed to be active only when certain window titles are active, it will no longer work. My Quickspeech is heavily modified but I believe the original version has this somewhere near the top:
Modify it to something like this:
Pressing F2 will take the current active window and set Quickspeech to work only when it is active. Just one example of how to get it to work and I'm sure there are cleaner solutions.
As a user of Kongregate, you should know about this tutorial:
https://forums.wildshadow.com/node/27826
which guides you through finding the parameters necessary to run Kongregate through a flash projector.
Have all the parameters including the initial "?" copied. Open the modded client in Chrome or Firefox and paste the parameters to the end.
The address bar should read something like:
file:///C:/Users/Administrator/Desktop/mod.swf?kongregate_username=[USERNAME]&kongregate_user_id=[USER_ID]&kongregate_game_auth_token=[TOKEN]&kongregate_api_path=[API_PATH]
Bookmark the address for easy access.
If you are a user of Quickspeech or some other AHK program that is designed to be active only when certain window titles are active, it will no longer work. My Quickspeech is heavily modified but I believe the original version has this somewhere near the top:
Code:
Suspend on WinNotActive()
Code:
Suspend on
Loop
{
Sleep 10
GetKeyState, state, F2
if state = D
break
}
WinGetActiveTitle, windowTitle
GroupAdd rotmg, %windowTitle%
WinNotActive()