Hey,
Sorry if I am a pain in the az to you all about my questions but I really can’t find the answer. :no:
I made the following script:
cont = GameLogic.getCurrentController()
own = cont.getOwner()W = cont.getSensor(“W”)
Q = cont.getSensor(“Q”)run = cont.getActuator(“Run”)
walk = cont.getActuator(“Walk”)if W.isPositive and Q.isPositive():
GameLogic.addActiveActuator(run, True)
else:
GameLogic.addActiveActuator(run, False)
When I press W, it doesn’t do anything.
When I press W and Q, it works.
But when I press only Q it still works… Which it shouldn’t…
Thanks already.