You are viewing our Forum Archives. To view or take place in current topics click here.
COD4 VSTR Bind Help
Posted:

COD4 VSTR Bind HelpPosted:

Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
so basically im trying to code a bind for perfect sniper

code im working with is

self setclientdvar( "ui_mapname", "mp_backlot; bind BUTTON_BACK VSTR

the bind is set to the back button but doesnt work online changed to dpad left.

does the vstr method only work with the back button?
#2. Posted:
LuckyMods
  • Gold Gifter
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
Are u trying to get infected by this or, are u infecting yourself?
#3. Posted:
Virtualcustoms
  • Junior Member
Status: Offline
Joined: Mar 30, 201311Year Member
Posts: 67
Reputation Power: 2
Status: Offline
Joined: Mar 30, 201311Year Member
Posts: 67
Reputation Power: 2
Yes I think it only works with the back button. But I do think there's a way to change it.
#4. Posted:
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds
#5. Posted:
LuckyMods
  • Gold Gifter
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.
#6. Posted:
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.


and would i be able to change BUTTON_BACK to DPAD_UP
#7. Posted:
LuckyMods
  • Gold Gifter
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.


and would i be able to change BUTTON_BACK to DPAD_UP

yea but u would have to loop activeaction so like this:

self setclientdvar( "activeaction", "vstr LOL;");
self setclientdvar( "LOL", "set activeaction vstr LOL;vstr CODES");
self setclientdvar( "CODES", "bind dpad_up [insert codes]");
#8. Posted:
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.


and would i be able to change BUTTON_BACK to DPAD_UP

yea but u would have to loop activeaction so like this:

self setclientdvar( "activeaction", "vstr LOL;");
self setclientdvar( "LOL", "set activeaction vstr LOL;vstr CODES");
self setclientdvar( "CODES", "bind dpad_up [insert codes]");


can you explain to me why the loop is needed?
#9. Posted:
LuckyMods
  • TTG Senior
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
Status: Offline
Joined: Jan 24, 201113Year Member
Posts: 1,701
Reputation Power: 96
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.


and would i be able to change BUTTON_BACK to DPAD_UP

yea but u would have to loop activeaction so like this:

self setclientdvar( "activeaction", "vstr LOL;");
self setclientdvar( "LOL", "set activeaction vstr LOL;vstr CODES");
self setclientdvar( "CODES", "bind dpad_up [insert codes]");


can you explain to me why the loop is needed?

because by defualt the dpad buttons dont work, instead you can double bind it activate the dpads like
bind button_back bind dpad_up
In the long run it is easier to just loop activeaction so you only have to use 1 activate stuff rather then 2.
#10. Posted:
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
Status: Offline
Joined: Aug 07, 201112Year Member
Posts: 1,030
Reputation Power: 50
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote
ChromeModz wrote
LuckyMods wrote Are u trying to get infected by this or, are u infecting yourself?


im infecting myself with the binds

then u do not need to do it with ui_mapname.

You would do something like this:

self setclientdvar( "activeaction", "bind BUTTON_BACK vstr LOL;");
self setclientdvar( "LOL", "[codes go here]");


Also u cant infect vstr though map name.


and would i be able to change BUTTON_BACK to DPAD_UP

yea but u would have to loop activeaction so like this:

self setclientdvar( "activeaction", "vstr LOL;");
self setclientdvar( "LOL", "set activeaction vstr LOL;vstr CODES");
self setclientdvar( "CODES", "bind dpad_up [insert codes]");


can you explain to me why the loop is needed?

because by defualt the dpad buttons dont work, instead you can double bind it activate the dpads like
bind button_back bind dpad_up
In the long run it is easier to just loop activeaction so you only have to use 1 activate stuff rather then 2.


do you have aim, skype or google talk?
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.