how do i make that work...?


(nathan2022001) #1

(default.cfg)
// g_misc [integer]
// This is a bitflag cvar that currently supports the following flags:
// 1 - Enable double jump.
// 2 - Enable binoc master competition. Requires g_weapons 64 to be set.
// (etpubclient >= 20050927 required)
// 8 - Enable killing spree streaks messages (see g_killingSpree)
// 16 - Prohibit jumping if stamina is low (requires etpub client)
// 32 - Players cannot put their heads into other solids when prone/playdead.
// This is the behaviour of etpub 0.5.x. (etpubclient required). If using
// etpubclient before 20050927, this must be enabled.
// [Default: 0]

set g_misc 2,8,16,1 //for some reason it doesnt let me have all of the ones there its
//prob because i havent separated them right…how would i do it?


(nathan2022001) #2

(server.cfg)
// g_censor [string]
// [string] is a comma delimited string of words that will be sensored from
// chat.
// [Default: “”]
set g_censor “dick,fuck”

none of them are sensored…:’(


(Etnies) #3

post on the etpub forums, www.etpub.org


(B0rsuk) #4

Hey, I have a fairly obscure and frustrating problem. My Reload key ocassionaly “gets stuck” and I need a workaround. When it happens, my gun is automatically reloaded after each shot. This usually means death when it happens in a duel, but also leads to very amusing situations where I finish people with single SMG shot.

So far only (dirty) workaround I found is to type /-reload in console. Poor fix, but it works.
I tried to bind 2 functions to one key, but it doesn’t work for some reason. Specifically, I wanted to assign the “cure” to a key I use quite often anyway. Something like “bind kp_ins binoculars; -reload”. Binoculars work, but my reload is still stuck.

Any ideas ?


(kamikazee) #5

You could try

bind kp_ins "binoculars; -reload"

Mind the quotes.


(Nail) #6

set g_misc 27 … numbers add together
set g_censor “dick, fuck, prick, others” …try a space after comma


(Etnies) #7

Change your reload key? or if you bind a second key to reload ie “bind g +reload” and press it when your other key is stuck, it will stop the reloading after every shot


(Black_Forky) #8

set reloadfix1 “binoculars”
set reloadfix2 “-reload”

bind kp_ins “+vstr reloadfix1 reloadfix2”

I guess ><