You are viewing our Forum Archives. To view or take place in current topics click here.
hey crackbomber, Bob evans, or farmer
Posted:

hey crackbomber, Bob evans, or farmerPosted:

BritePinkTaco
  • Wise One
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
ive been it a game with you guys how did you infect me with noclip? and give all the achievements? thanks
#2. Posted:
Dracolich
  • Ladder Climber
Status: Offline
Joined: Oct 02, 201113Year Member
Posts: 347
Reputation Power: 63
Status: Offline
Joined: Oct 02, 201113Year Member
Posts: 347
Reputation Power: 63
BritePinkTaco wrote ive been it a game with you guys how did you infect me with noclip? and give all the achievements? thanks


u sir have to figure it out ur self
#3. Posted:
BritePinkTaco
  • Wise One
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
dexgo wrote
BritePinkTaco wrote ive been it a game with you guys how did you infect me with noclip? and give all the achievements? thanks


u sir have to figure it out ur self

no i mean i have the iso modded and stuff i just cant figure out how to infect people with no clip i can only do god mode and unlimited ammo
#4. Posted:
TTG_Trace
  • Challenger
Status: Offline
Joined: Apr 14, 201113Year Member
Posts: 193
Reputation Power: 8
Status: Offline
Joined: Apr 14, 201113Year Member
Posts: 193
Reputation Power: 8
You need to know the command, look in the CVARS in the thread stickied. Something may help you.
#5. Posted:
moddingpro210
  • TTG Natural
Status: Offline
Joined: Jun 05, 201113Year Member
Posts: 923
Reputation Power: 43
Status: Offline
Joined: Jun 05, 201113Year Member
Posts: 923
Reputation Power: 43
Look around a thing called the web.
#6. Posted:
NUBBIN_YOU
  • New Member
Status: Offline
Joined: Mar 25, 201212Year Member
Posts: 16
Reputation Power: 0
Status: Offline
Joined: Mar 25, 201212Year Member
Posts: 16
Reputation Power: 0
everyone will hate me for this but.....


nt_create point_clientcommand
ent_setname point_clientcommand
ent_fire bob1 addoutput "Onignite point_clientcommand,command,bind UP noclip;bind R_SHOULDER say Go to game-tuts for mod tutorials;bind STICK1 ent_fire !self color 0 0 0"
ignite bob1

bind "[button/trigger/dpad]" "ent_fire !picker ent_setname bob1
#7. Posted:
BritePinkTaco
  • Wise One
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
Status: Offline
Joined: Jul 24, 201113Year Member
Posts: 549
Reputation Power: 22
NUBBIN_YOU wrote everyone will hate me for this but.....


nt_create point_clientcommand
ent_setname point_clientcommand
ent_fire bob1 addoutput "Onignite point_clientcommand,command,bind UP noclip;bind R_SHOULDER say Go to game-tuts for mod tutorials;bind STICK1 ent_fire !self color 0 0 0"
ignite bob1

bind "[button/trigger/dpad]" "ent_fire !picker ent_setname bob1

what do i push in game though?
#8. Posted:
Dracolich
  • Gold Gifter
Status: Offline
Joined: Oct 02, 201113Year Member
Posts: 347
Reputation Power: 63
Status: Offline
Joined: Oct 02, 201113Year Member
Posts: 347
Reputation Power: 63
BritePinkTaco wrote
NUBBIN_YOU wrote everyone will hate me for this but.....


nt_create point_clientcommand
ent_setname point_clientcommand
ent_fire bob1 addoutput "Onignite point_clientcommand,command,bind UP noclip;bind R_SHOULDER say Go to game-tuts for mod tutorials;bind STICK1 ent_fire !self color 0 0 0"
ignite bob1

bind "[button/trigger/dpad]" "ent_fire !picker ent_setname bob1

what do i push in game though?


lol and thats y u shouldnt of told him lol hes going to copy that straight sence he doesnt know anything about it lol
#9. Posted:
w0lfschild
  • Junior Member
Status: Offline
Joined: Mar 19, 201212Year Member
Posts: 73
Reputation Power: 2
Status: Offline
Joined: Mar 19, 201212Year Member
Posts: 73
Reputation Power: 2
NUBBIN_YOU wrote everyone will hate me for this but.....


nt_create point_clientcommand
ent_setname point_clientcommand
ent_fire bob1 addoutput "Onignite point_clientcommand,command,bind UP noclip;bind R_SHOULDER say Go to game-tuts for mod tutorials;bind STICK1 ent_fire !self color 0 0 0"
ignite bob1

bind "[button/trigger/dpad]" "ent_fire !picker ent_setname bob1


Pretty much this. Nubbin is a boss but you just might want to write it nicer


//remove p_cc1 if it already exists
ent_fire p_cc1 killhierarchy

//create point_clientcommand
ent_create point_clientcommand

//change it's name to something logical but shortened
ent_setname p_cc1

//addoutputs to receiver 'p_01'
//notify the user by making them say mods activated
ent_fire p_01 addoutput "Onuser1 p_cc1,command,say Mods Activated

//let all players know what they can now do
say "press up on dpad for noclip
say "press down on dpad for third person
say "press left thumbstick to change color

//add binds to user
ent_fire p_01 addoutput "Onuser1 p_cc1,command,bind UP noclip
ent_fire p_01 addoutput "Onuser1 p_cc1,command,bind DOWN thirdperson
ent_fire p_01 addoutput "Onuser1 p_cc1,command,bind STICK1 ent_fire !activator color 0 0 0

//run the mods
ent_fire p_01 "fireuser1

//change the players targetname so they are not targeted again
ent_fire p_01 addoutput "targetname p_02

//bind something so you can choose your receivers
bind "[button/trigger/dpad]" "ent_setname p_01


with the above the targeted players will not be lit on fire and will not be repeatedly targeted if you run the config again
also the player will be notified that they are now modding by their player saying "Mods Activated" followed by yourself saying the new binds that they will have

How to use:

First select the players you want to receive the mod by looking at them and pressing whatever button you bound in the last step setting the players targetname to p_01

Next simply reload your config it will create a new point_clientcommand and run whatever you want as if the client(s) targeted had run the command

Of corse I probably made a typo and fail at life but you should get the gist of it by now.
#10. Posted:
w0lfschild
  • Junior Member
Status: Offline
Joined: Mar 19, 201212Year Member
Posts: 73
Reputation Power: 2
Status: Offline
Joined: Mar 19, 201212Year Member
Posts: 73
Reputation Power: 2
dexgo wrote

lol and thats y u shouldnt of told him lol hes going to copy that straight sence he doesnt know anything about it lol


Dude get a f*cking life. Don't you people have anything better to do then post negative comments to everyone who asks or answers a question on these forums.

If you aren't going to be helpful just go somewhere else please... nobody wants to get bashed by random people on the internet. If you want to be an ass-hat to everyone go troll /b/ or something.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.