Page 1 of 1

Still stay when talking. How to make it?

PostPosted: Fri Aug 20, 2010 3:35 pm
by Wertyboy
Hi!
How to make player still stay (can't move) when talking
I using this talking box
http://game-editor.com/forum/viewtopic.php?f=5&t=6828&p=48833&hilit=textbox#p48833

Re: Still stay when talking. How to make it?

PostPosted: Sat Aug 21, 2010 6:10 am
by lcl
Edit the script that opens the window and do this:

Code: Select all
EventDisable("Player", EVENTKEYDOWN);
EventDisable("Player", EVENTKEYUP);


And the code that deactivates the window, use this:

Code: Select all
EventEnable("Player", EVENTALL);


:D Hope this works! :D

Re: Still stay when talking. How to make it?

PostPosted: Tue Aug 24, 2010 3:17 am
by Wertyboy
THX :D :D :D