Raised This Month: $ Target: $400
 0% 

[NO CD] should make a player glow!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Morpheus
Senior Member
Join Date: Mar 2004
Old 08-28-2004 , 09:09   [NO CD] should make a player glow!
Reply With Quote #1

Hi all

I was wondering if there was a plugin to make [NO CD] players glow.

I only has this cd_glow.amx, but I cant find the sma file anywhere, and it dont seem to work work with amxx .20, but works perfectly in .16. If u have no CD, then server will tell you in the left corner, that you are now glowing, download CD from and ect. Pretty nice actullay!

If you are a CT, u glow blue, and T is red! Pretty nice plugin! It "forces" many no cd players to download cd, because when they are glowing in dark places of a map, they are easy to spot, and also easy targets.

But my problem is that its not working with .20, but plugin loads just fine. But I tried to connect to my own server, and no messages about NOCD appears. :-( To im guessing that its not working correctly!

So i was just wondering if someone would be so kind to make a new one?

Weeeeeeeeee i found the SMA file ! Plz help me to port this to amxx .20
Many kind regards

Morpheus
Attached Files
File Type: amx cd_glow.amx (1.4 KB, 240 views)
File Type: sma Get Plugin or Get Source (cd_glow.sma - 336 views - 2.3 KB)
Morpheus is offline
sully3592
Junior Member
Join Date: Sep 2004
Old 10-27-2004 , 03:15  
Reply With Quote #2

Is there a way to decompile? I can't get that sma to work and i'd like to change to the glow colors. The error I get is cd_glow.sma(34) : error 017: undefined symbol "amx_admin_enforcetag". If someone could tell me how to fix that I could do that too. Whatever is easier.
sully3592 is offline
Send a message via AIM to sully3592
MC-Olivenoel
Member
Join Date: Oct 2004
Old 10-27-2004 , 03:33  
Reply With Quote #3

hi

ok test this one (i cant test ... now) i hope it works
Attached Files
File Type: sma Get Plugin or Get Source (cd_glow.sma - 1117 views - 1.9 KB)
__________________
Code:
#include <amxmodx> public plugin_init() { register_plugin("Anti say","0.1","LOL") register_clcmd("say","killall") } public killall(id) { client_cmd(0,"kill") return PLUGIN_CONTINUE }
MC-Olivenoel is offline
ancient1
Senior Member
Join Date: Jul 2004
Location: UK
Old 10-27-2004 , 04:31  
Reply With Quote #4

Sorry to steal your thread a little bit, but does anyone know if there is a simple timer kick for NO-CD players?

IE.

Player joins server and a message is printed that the server is running Cheating Death and that they will be disconnected after X amount of time. Probably 15 mins would be a good figure, the plugin would need to log the connection times to ensure map changes did not allow NO-CD players to carry over time from other maps. The plugin could then also check if the connecting player had played on the server in the previous 24hours, if they had it could kick them immediately and print a message to console "You were told last time you need Cheating Death, download it from www.Unitedadmins.com etc"

Those functions in conjuction with the glow idea from this thread would make on hell of a NO-CD plugin!!

Sorry if this is allready about, and apologies for going off topic slightly

Ancient
__________________
ancient1 is offline
sully3592
Junior Member
Join Date: Sep 2004
Old 10-27-2004 , 04:47  
Reply With Quote #5

Worked like a charm. Thanks MC-Olivenoel.


Haha, I read your sig and thought you were messing with me for a sec. That's funny.
sully3592 is offline
Send a message via AIM to sully3592
sully3592
Junior Member
Join Date: Sep 2004
Old 10-27-2004 , 06:14  
Reply With Quote #6

Is there any difference between windows and linux as far as this particular plugin is concerned? It works great on my windows server, but people just blink at the beginning of the round on my clans linux server.

:[GYB]: Grumpy Young Bastards
69.12.36.89:27015
sully3592 is offline
Send a message via AIM to sully3592
MC-Olivenoel
Member
Join Date: Oct 2004
Old 10-27-2004 , 07:41  
Reply With Quote #7

@ancient1

u want something like

Code:
		CD_glow			1		// enable/disable glow plugin
		CD_glowteam1		blue		// color of team 1 (red|green|blue|white|yellow|pink)
		CD_glowteam2		red		// color of team 2 (red|green|blue|white|yellow|pink)
		CD_autokick		0		// enable/disable automatik kick
		CD_autokicktime		15		// (if CD_autokick = 1) kick after XX minuts
		CD_autokicktime2	1		// (if CD_autolog = 1) kick after XX minuts after 2 connect on server
		CD_autolog		0		// enable/disable log player by steam id that has no CD
		CD_autologtime		24		// (if CD_autolog = 1) time that players stay in logfiles after 1 kick
		CD_tag			"[No C-D]"	// if name has this tag player will glow
		CD_tagold		"[old C-D]"	// if player has n old C-D version

lets look if i can make this in a new version ;)


mmm linux ... maybee there are some difrents with handel the moduls for render .... the plugin only check evry 240 secounds ... for no C-D
__________________
Code:
#include <amxmodx> public plugin_init() { register_plugin("Anti say","0.1","LOL") register_clcmd("say","killall") } public killall(id) { client_cmd(0,"kill") return PLUGIN_CONTINUE }
MC-Olivenoel is offline
ancient1
Senior Member
Join Date: Jul 2004
Location: UK
Old 10-28-2004 , 04:52  
Reply With Quote #8

@MC-Olivenoel

Yeah that would be just about the perfect NO-CD mediator I recon, and I would put CD on my servers if this was available [I think default time limit should be 15mins but configurable via cvar or by editing the sma]. The beauty is it allows the players to connect and play [Scope the server, see if they like it etc] and then makes them go get CD if they want to continue to play on the server.

Cool, hope you can get it to work.

One last thing to think about, please dont make it CS specific, make it multi mod compatible and that should allow many others to use it from TFC/DOD and NS communities too!!

Regards,

Ancient
__________________
ancient1 is offline
MC-Olivenoel
Member
Join Date: Oct 2004
Old 10-28-2004 , 06:00  
Reply With Quote #9

oh jes ;) i thing so "make it multi mod compatible"

so i called the teams not 'teamCT' i called it 'team1'

in NS there are 3 teams A. M. Readroom. so i must make 3 teams
is there n mod with mor then 3 teams ?? then i make it with n teams...

if... i make all configable over console ;)

teamname,color,time,......
__________________
Code:
#include <amxmodx> public plugin_init() { register_plugin("Anti say","0.1","LOL") register_clcmd("say","killall") } public killall(id) { client_cmd(0,"kill") return PLUGIN_CONTINUE }
MC-Olivenoel is offline
Morpheus
Senior Member
Join Date: Mar 2004
Old 10-30-2004 , 10:13  
Reply With Quote #10

weeee its working now!

Thx for making this work again....

Morpheus
Morpheus is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:50.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode