LinIeIage Posted October 12, 2022 Posted October 12, 2022 (edited) Hi everyone, I can't find where the movement controller in my source for WASD keys. Can someone help me with this? I need to turn off moves when players press that keys. Edited January 11, 2023 by Vision
1 AbsolutePower Posted October 12, 2022 Posted October 12, 2022 On 10/12/2022 at 12:46 PM, LinIeIage said: Hi everyone, I can't find where the movement controller in my source for WASD keys. Can someone help me with this? I need to turn off moves when players press that keys. Expand go to: gameserver/network/clientpackets/MoveBackwardToLocation.java _moveMovement = readD(); // is 0 if cursor keys are used 1 if mouse is used find if (activeChar == null) return; and add: if (_moveMovement == 0) return; 1
Question
LinIeIage
Hi everyone, I can't find where the movement controller in my source for WASD keys. Can someone help me with this? I need to turn off moves when players press that keys.
Edited by Vision3 answers to this question
Recommended Posts