Results 1 to 6 of 6
  1. #1
    dsds1's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    2
    My Mood
    Fine

    Post Hello, so anyone knows full list of button commands?

    Hello, I have problem

    I found this function
    Code:
    self notifyOnPlayerCommand("n", "+actionslot 1");
    but I want key commands other than this like left or right
    Press thanks if I helped you
    my English grammar not good

  2. #2
    Yamato's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    839
    Reputation
    13
    Thanks
    154
    My Mood
    Amazed
    Quote Originally Posted by dsds1 View Post
    Hello, I have problem

    I found this function
    Code:
    self notifyOnPlayerCommand("n", "+actionslot 1");
    but I want key commands other than this like left or right
    You can see them in config_mp.cfg

  3. #3
    writeoffz's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Antwerp
    Posts
    16
    Reputation
    10
    Thanks
    1
    Code:
     TAB "+scores"
     ESCAPE "togglemenu"
     SPACE "+gostand"
     3 "+actionslot 3"
     4 "+actionslot 4"
     5 "+actionslot 2"
     A "+moveleft"
     C "toggleprone"
     D "+moveright"
     F "+activate"
     E "+melee"
     N "+actionslot 1"
     Q "+smoke"
     R "+reload"  // make it "+usereload" for consoles other then PC :)
     S "+back"
     Y "chatmodeteam"
     Z "+talk"
     W "+forward"
     T "chatmodepublic"
     CTRL "togglecrouch"
     SHIFT "+breath_sprint"
     MOUSE1 "+attack"
     MOUSE2 "+speed_throw"
     MOUSE3 "+frag"
     MWHEELDOWN "weapnext"
     MWHEELUP "weapnext"
    I think this is what you wanted? :P

  4. #4
    KickerOfAsses's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    5
    My Mood
    Lurking
    There are others that won't show up in a default config file, as well. Commands that are unbound by default are great for squeezing into mods that are already using all the actionslots. You can change them in the options menu by binding them to whatever key you like and using the appropriate command in your code:
    Code:
    "+scores"
    "togglemenu"
    "+stance" (Change Stance)
    "+movedown" (Hold Crouch)
    "togglecrouch"
    "+prone" (Hold Prone)
    "toggleprone"
    "+gostand" (Stand/Jump)
    "+right" (Turn Right)
    "+left" (Turn Left)
    "+strafe" (Hold Strafe)
    "+back"
    "+forward"
    "+moveright"
    "+moveleft"
    "+lookdown"
    "+lookup"
    "+mlook" (Mouse Look)
    "+actionslot 1"
    "+actionslot 2"
    "+actionslot 3"
    "+actionslot 4"
    "centerview"
    "+activate"
    "+attack"
    "+reload"
    "+melee"
    "weapnext"
    "+smoke"
    "+frag"
    "+speed_throw" (Hold Aim Down the Sight)
    "+toggleads_throw" (Aim Down the Sight)
    "+holdbreath"
    "+sprint"
    "+breath_sprint"
    "chatmodepublic"
    "chatmodeteam"
    "+talk"
    There are 2 ways to use the commands, and both have different results. You can define the key you've mapped along with the command:
    Code:
    self notifyOnPlayerCommand("K", "centerview");
    self waittill("K");
    ...or you can just use the command itself as the trigger:
    Code:
    self notifyOnPlayerCommand("[{centerview}]", "centerview");
    self waittill("[{centerview}]");
    Last edited by KickerOfAsses; 12-28-2011 at 03:04 PM.

  5. The Following User Says Thank You to KickerOfAsses For This Useful Post:

    dsds1 (12-29-2011)

  6. #5
    dsds1's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    2
    My Mood
    Fine
    Quote Originally Posted by KickerOfAsses View Post
    There are others that won't show up in a default config file, as well. Commands that are unbound by default are great for squeezing into mods that are already using all the actionslots. You can change them in the options menu by binding them to whatever key you like and using the appropriate command in your code:
    Code:
    "+scores"
    "togglemenu"
    "+stance" (Change Stance)
    "+movedown" (Hold Crouch)
    "togglecrouch"
    "+prone" (Hold Prone)
    "toggleprone"
    "+gostand" (Stand/Jump)
    "+right" (Turn Right)
    "+left" (Turn Left)
    "+strafe" (Hold Strafe)
    "+back"
    "+forward"
    "+moveright"
    "+moveleft"
    "+lookdown"
    "+lookup"
    "+mlook" (Mouse Look)
    "+actionslot 1"
    "+actionslot 2"
    "+actionslot 3"
    "+actionslot 4"
    "centerview"
    "+activate"
    "+attack"
    "+reload"
    "+melee"
    "weapnext"
    "+smoke"
    "+frag"
    "+speed_throw" (Hold Aim Down the Sight)
    "+toggleads_throw" (Aim Down the Sight)
    "+holdbreath"
    "+sprint"
    "+breath_sprint"
    "chatmodepublic"
    "chatmodeteam"
    "+talk"
    There are 2 ways to use the commands, and both have different results. You can define the key you've mapped along with the command:
    Code:
    self notifyOnPlayerCommand("K", "centerview");
    self waittill("K");
    ...or you can just use the command itself as the trigger:
    Code:
    self notifyOnPlayerCommand("[{centerview}]", "centerview");
    self waittill("[{centerview}]");
    Thanks, thats what I meant

    /sloved
    Press thanks if I helped you
    my English grammar not good

  7. #6
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Quote Originally Posted by KickerOfAsses View Post
    There are 2 ways to use the commands, and both have different results. You can define the key you've mapped along with the command:
    Code:
    self notifyOnPlayerCommand("K", "centerview");
    self waittill("K");
    ...or you can just use the command itself as the trigger:
    Code:
    self notifyOnPlayerCommand("[{centerview}]", "centerview");
    self waittill("[{centerview}]");

    You can use anything you want...

    Code:
    Code:
    self notifyOnPlayerCommand("AJSDGKLASDG", "centerview");
    self waittill("AJSDGKLASDG");
    Code:
    self notifyOnPlayerCommand("MPGH", "centerview");
    self waittill("MPGH");

Similar Threads

  1. Does anyone know a hack for warrock dinar
    By killa017 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-30-2007, 06:17 PM
  2. Does anyone know why I was IP banned?
    By systemx84 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-28-2007, 11:51 AM
  3. Anyone know how to shot with knockels?
    By EyalZamir in forum WarRock Korea Hacks
    Replies: 9
    Last Post: 05-20-2007, 12:12 PM
  4. anyone knows how to get trainer maker works?
    By xydox in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-03-2007, 09:35 AM
  5. Lookin for WOW 1 Hit kill hack anyone know how to do it
    By Spiderman in forum General Game Hacking
    Replies: 5
    Last Post: 02-10-2006, 05:18 PM