Quote:
Originally Posted by deadbwoy
I have found a couple errors, here are the fixes:
change lines 999-1002 from
Code:
else if(a == victim > 0 && (cvar == 2 || cvar == 3))
PrintToChat(victim, "[STK] %s", msg1);
else if(a == attacker > 0 && (cvar == 2 || cvar== 3))
PrintToChat(attacker, "[STK] %s", msg2);
to
Code:
else if(victim > 0 && victim == a && (cvar == 2 || cvar == 3))
PrintToChat(victim, "[STK] %s", msg1);
else if(attacker > 0 && attacker == a && (cvar == 2 || cvar== 3))
PrintToChat(attacker, "[STK] %s", msg2);
and in translations, under "Auto Forgave":
change the second "en" to "fr"
|
I had already fixed this on my local copy but forgot to upload the changes. Also, the > 0 is not even needed because it is compared with a which must be >= 1.
Thanks for pointing those out and fixing them though, =)
I've updated the first post with those fixes.
Quote:
Originally Posted by pantsy
weird, is it possible to turn off auto dying, like when you kill a teammate you automatically die, i'd rather have it that you kill a teammate then they get to choose what they do to you???
there must be a cvar i'm not seeing
|
Is sm_stk_reflect set to 1?
Set it to 0.
Also, what is sm_stk_punishmode set to?
Quote:
Originally Posted by duydangle
On the newest CS:S, I can't get it too work. There are only 2 options: Forgive or not, no slay, timebomb, ...
May you guys help me?
|
Quote:
Originally Posted by Mr. Dead
So I recently put this on my Gungame server, and I like it very much so far. But I have a problem where some people do not forgive people and they get no options to slay, slap, etc. I have it so admins are not immune, so I wouldn't think that would be the problem I don't think?
|
Quote:
Originally Posted by WaYne82
Same Problem here. Admins are not immune but some People get no Options menu ?!?!
|
What is sm_stk_punishmode set to?
Are other punishments enabled? Check the cvars. Post your config file here so I can check it out.
Are there any errors in the logs?
__________________