enable/disable weapons by vote
Anyone got a example of gt script with "callvote weapon_name 0/1"
that works under warsow 0.7?
I'm trying to customize ca.as
I tried to look up something from midair in 0.6 but the .getbool stuff errs (ah yeah second question: how i get bool value?)
EDIT damn im stupid
if ( g_mid_enableGL.getBool() )
is the same as:
if ( g_mid_enableGL == 0 )
EDIT 2:
no its
if ( g_mid_enableGL != 0 )
(updated 2012-07-24 03:06:00)
I'm trying to customize ca.as
I tried to look up something from midair in 0.6 but the .getbool stuff errs (ah yeah second question: how i get bool value?)
EDIT damn im stupid
if ( g_mid_enableGL.getBool() )
is the same as:
if ( g_mid_enableGL == 0 )
EDIT 2:
no its
if ( g_mid_enableGL != 0 )
(updated 2012-07-24 03:06:00)

