as its name says: Hardcore with killcam and friendly fire OFF
on .dsr file set these settings:
and u r good to go
its a really basic one but I hope u enjoy it
feel free to contact me for bug reports
its too short,simple but working.
source:
semihc.zip (Size: 1.94 KB / Downloads: 498)
HeXman
on .dsr file set these settings:
Code:
gameOpt commonOption.hardcoreModeOn "0"
gameOpt commonOption.friendlyFire "0"
gameOpt commonOption.healthRegen "0.0000"
gameOpt commonOption.maxHealth "30.0000"
and u r good to go
its a really basic one but I hope u enjoy it
feel free to contact me for bug reports
its too short,simple but working.
source:
CSHARP Code
- using System;
- using System.Collections.Generic;
- using Addon;
-
-
- namespace plugin_test
- {
-
- public class plugin_test : CPlugin
- {
- /*public override void OnServerFrame()
- {
- hardcore();
- }*/
- public override void OnFastRestart()
- {
- hardcore();
- }
- public override void OnPlayerConnect(ServerClient Client)
- {
- SetClientDvar(Client.ClientNum, "g_hardcore \"1\"");
- SetClientDvar(Client.ClientNum, "cg_drawCrosshair \"0\"");
- SetClientDvar(Client.ClientNum, "cg_scoreboardPingText \"1\"");
- }
- public void hardcore()
- {
- foreach (ServerClient client in GetClients())
- {
- SetClientDvar(client.ClientNum, "g_hardcore \"1\"");
- SetClientDvar(client.ClientNum, "cg_drawCrosshair \"0\"");
- SetClientDvar(client.ClientNum, "cg_scoreboardPingText \"1\"");
- }
- }
- }
- }
semihc.zip (Size: 1.94 KB / Downloads: 498)
HeXman