Post Reply 
 
Thread Rating:
  • 5 Votes - 4.6 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Release Semi hardcore 1.1 beta (Killcam on and ff off)
03-04-2012, 23:20 (This post was last modified: 03-05-2012 18:45 by atenziono. Edit Reason: subject: [Release], [code=csharp])
Post: #1
Semi hardcore 1.1 beta (Killcam on and ff off)
as its name says: Hardcore with killcam and friendly fire OFF

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 goBig Grin
its a really basic oneBig Grin but I hope u enjoy it

feel free to contact me for bug reports
its too short,simple but working.
source:
CSHARP Code
  1. using System;
  2. using System.Collections.Generic;
  3. using Addon;
  4.  
  5.  
  6. namespace plugin_test
  7. {
  8.  
  9. public class plugin_test : CPlugin
  10. {
  11. /*public override void OnServerFrame()
  12.   {
  13.   hardcore();
  14.   }*/
  15. public override void OnFastRestart()
  16. {
  17. hardcore();
  18. }
  19. public override void OnPlayerConnect(ServerClient Client)
  20. {
  21. SetClientDvar(Client.ClientNum, "g_hardcore \"1\"");
  22. SetClientDvar(Client.ClientNum, "cg_drawCrosshair \"0\"");
  23. SetClientDvar(Client.ClientNum, "cg_scoreboardPingText \"1\"");
  24. }
  25. public void hardcore()
  26. {
  27. foreach (ServerClient client in GetClients())
  28. {
  29. SetClientDvar(client.ClientNum, "g_hardcore \"1\"");
  30. SetClientDvar(client.ClientNum, "cg_drawCrosshair \"0\"");
  31. SetClientDvar(client.ClientNum, "cg_scoreboardPingText \"1\"");
  32. }
  33. }
  34. }
  35. }


.zip  semihc.zip (Size: 1.94 KB / Downloads: 385)
HeXman
Related links
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 9 users say Thank You to atenziono for this post:
Andrees (11-16-2012), d0h! (03-06-2012), DarkGhost (03-04-2012), JariZ (03-04-2012), jungle (03-21-2012), kokole (03-04-2012), oldie (03-05-2012), OzonE (04-24-2012), Predje (03-06-2012)
03-04-2012, 23:23
Post: #2
RE: (Release) Semi hardcore 1.1 beta (Killcam on and ff off)
Really simple, but still +1

[Image: k5sVYyb.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to JariZ for this post:
atenziono (03-05-2012)
03-05-2012, 18:47
Post: #3
RE: (Release) Semi hardcore 1.1 beta (Killcam on and ff off)
Excuse for my bad English language), Has installed a plugin, all works except killcam, why?
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to jnn83 for this post:
atenziono (03-08-2012)
03-05-2012, 19:31
Post: #4
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
thx...Big Grin
Related links
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to oldie for this post:
atenziono (03-08-2012)
03-06-2012, 02:49
Post: #5
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
Does this plug in just turn FF off or can you set it to reflect also?

Thanks,

TiLLeR
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to TiLLeR for this post:
atenziono (03-08-2012)
03-06-2012, 16:59
Post: #6
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
Any chance the removal of crosshair can be linked to map change instead of fast restart as i can't imagine to have to do a fast restart in the beginning of every map :/
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to Predje for this post:
atenziono (03-08-2012)
03-08-2012, 17:10 (This post was last modified: 03-08-2012 17:55 by atenziono.)
Post: #7
RE: (Release) Semi hardcore 1.1 beta (Killcam on and ff off)
(03-05-2012 18:47)jnn83 Wrote:  Excuse for my bad English language), Has installed a plugin, all works except killcam, why?
check ur killcam option

check the dsr file for:
Code:
gameOpt commonOption.showKillcam "1"

it should be "1" to have killcams
(03-06-2012 02:49)TiLLeR Wrote:  Does this plug in just turn FF off or can you set it to reflect also?

Thanks,

TiLLeR
on/off only!
sry bro but I havent seen ricochet (reflected friendly fire) option on private match or on dedicate servers dvar lists.Confused
Find all posts by this user
Add Thank You Quote this message in a reply
03-09-2012, 12:06
Post: #8
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
(03-06-2012 16:59)Predje Wrote:  Any chance the removal of crosshair can be linked to map change instead of fast restart as i can't imagine to have to do a fast restart in the beginning of every map :/

at the moment I am working on it.
tnx for feed back
Related links
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to atenziono for this post:
d0h! (03-11-2012)
03-11-2012, 11:30
Post: #9
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
(03-09-2012 12:06)atenziono Wrote:  at the moment I am working on it.
tnx for feed back

Looking forward
Find all posts by this user
Add Thank You Quote this message in a reply
03-11-2012, 14:45
Post: #10
RE: Semi hardcore 1.1 beta (Killcam on and ff off)
I am confused by this.

If applied does the server show in the server lists as hardcore, or is this just the age-old method of modifying normal-mode to PLAY like hardcore?
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Release] [BigBrotherBot] External Rcon 0.5/Chat viewer 0.2 beta archit 49 6,645 Yesterday 13:00
Last Post: archit
Rainbow [Release] xZombie Mod (Beta) SailorMoon 206 12,715 01-01-2013 08:33
Last Post: SMIRNOFF2096
  [Release] Hardcore Ricochet 1.2 archit 9 849 12-25-2012 05:27
Last Post: archit
  Hardcore no ff killcam allowed spiderabd 7 892 10-13-2012 22:44
Last Post: trimi_dogg
Brick [Release] LAMBDA CORE ZOMBIE MOD BETA estebespt 64 2,941 07-02-2012 20:51
Last Post: estebespt
Rainbow [Release] Sharpshooter Mod (Beta) SailorMoon 10 1,639 06-22-2012 03:56
Last Post: DidUknowiPwn
Brick [Release] ARMAGEDDON BETA estebespt 28 1,731 06-19-2012 22:47
Last Post: hillbilly

Forum Jump:


User(s) browsing this thread: 1 Guest(s)
Media Embeding by Simple Audio Video Embeder