View Single Post
  #2  
Old 08-04-2011, 11:09 PM
Tricxta Tricxta is offline
The Muffin Man
Tricxta's Avatar
Join Date: Oct 2010
Location: Australia
Posts: 563
Tricxta is just really niceTricxta is just really nice
When you disable default movement you also disable the ability to use the weaponfired call. To fix this you could make your own trigger script:
PHP Code:
function onKeypressed(){
  if (
keydown2(keycode(d),true) && this.key==0){
    
this.key=1;
    
callweapon selectedweapon,"weaponfired";
    while (
keydown2(keycode(d),true))sleep .05;
    
this.key=0;
  }

I know this method is a bit crude but your going to have excuse me since I dont actually code in GS2, however it does show the main idea I'm trying to convey. Hope this helps.
__________________
Quote:
Originally Posted by Crono View Post
No look at it, Stefan is totally trolling Thor. Calling Classic a "playerworld" (something it's not supposed to be) is the ultimate subtle insult to a true fan.

It's genius.
Reply With Quote