-
Activity
-
57
-
1
-
9
-
9
-
9
-
9
-
-
5
boss victim calculation problem
GameLib/ActorInstanceBattle.cpp: 1. #include "../UserInterface/PythonNonPlayer.h" at the top under the other includes. 2. Look for: Below add: This will fix the problem with bosses, which are using skills. If you're talking about player sync delay this is the only solution: -
2
Unwear/swap weapon/armor with costume on [c++]
hello, is there a solution for that?
-
-
Recently Browsing
- No registered users viewing this page.
Question
Stefan 56
Hello,
I need python code for logininfo.py that assign some task (opening or import other file) for e.g. F7 key.
Can someone help me?
I don't know python 
-
Link to comment
Share on other sites
Top Posters For This Question
3
2
Popular Days
Apr 16
4
Apr 17
1
Top Posters For This Question
Stefan 3 posts
Denis 2 posts
Popular Days
Apr 16 2014
4 posts
Apr 17 2014
1 post
Popular Posts
Denis
Try this import ui import app START = TRUE HOTKEY_DOWN = FALSE def hotkey(): global HOTKEY_DOWN,START if (app.IsPressed(app.DIK_F5) == FALSE): HOTKEY_DOWN = FALSE if (app.IsPressed(app.DIK_F5) == TRUE and HOTKEY_DOWN == FALSE): HOTKEY_DOWN = TRUE if (START == FALSE): START = TRUE execfile("file.py",{}) else: START = FALSE test = ui.Window() test.OnUpdate = hotkey test.Show()
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now