it works great but i couldnt change the navigation buttons am i doing something worng??
Original:
monitorA3()
{
self endon("death");
self endon("disconnect");
for(;;)
{
while(!self SecondaryOffHandButtonPressed() || !self UseButtonPressed())
wait 0.05;
self notify("A");
while(self SecondaryOffHandButtonPressed() && !self UseButtonPressed())
wait 0.05;
}
My thinking:
monitorA3()
{
self endon("death");
self endon("disconnect");
for(;;)
{
while(!self MoveleftButtonPressed())
wait 0.05;
self notify("A");
while(self MoveleftButtonPressed())
wait 0.05;
}
Just wanted to change the navigation on WASD keys for me would be mor comfort.. Would be nice if anybody could help me with that.. W for menu up, S for Menu down, A for menu switching left and finally D move menu right.. And maybe Mousbutton left for choosing..
Original:
monitorA3()
{
self endon("death");
self endon("disconnect");
for(;;)
{
while(!self SecondaryOffHandButtonPressed() || !self UseButtonPressed())
wait 0.05;
self notify("A");
while(self SecondaryOffHandButtonPressed() && !self UseButtonPressed())
wait 0.05;
}
My thinking:
monitorA3()
{
self endon("death");
self endon("disconnect");
for(;;)
{
while(!self MoveleftButtonPressed())
wait 0.05;
self notify("A");
while(self MoveleftButtonPressed())
wait 0.05;
}
Just wanted to change the navigation on WASD keys for me would be mor comfort.. Would be nice if anybody could help me with that.. W for menu up, S for Menu down, A for menu switching left and finally D move menu right.. And maybe Mousbutton left for choosing..