@Fiskekona, c_rotate only works with the latest version of wed. Replace it with:
my.pan += (key_a-key_d) * 6 * time;
Quote:
i tried making an inventory, but when it's enabled, i can still move and stuff!!
xboy360, create a variable to use as a flag to pause the movement of the player while your in the menu, like:
var inMenu = 0;
Then in your player loop, make this the first line after the while(1)
if(inMenu == 1) { wait(1); continue; }
Then in your menu code where you call it to display, add inMenu = 1;, and when you disable it, set it to 0 to unpause your movement and continue on.
-raiden