Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Renegade Discussions » Mod Forum » Renegade SSMods Archive
Renegade SSMods Archive [message #350321] Wed, 10 September 2008 15:26 Go to next message
marcin205 is currently offline  marcin205
Messages: 178
Registered: March 2007
Location: Poland
Karma: 0
Recruit
Hi all anybody have this? im try download these from this site but link is broken thanks http://www.renevo.com/files/folders/ren/entry680.aspx

An archive of past server-side mods for Renegade written by Vloktboky. Included: Various archives of Dragonade, Server-Side AOW, Server-Side CTF, Server-Side Snipers, Server-Side Infantry Only, Capture the Mobius, Deathmatch, Siege, Playland Scripts, and Black-Cell Forward source.


Re: Renegade SSMods Archive [message #350530 is a reply to message #350321] Thu, 11 September 2008 15:39 Go to previous messageGo to next message
wittebolx is currently offline  wittebolx
Messages: 332
Registered: May 2007
Location: the netherlands
Karma: 0
Recruit
yep Wink took some time to find it again.
http://www.wittebolx.com/downloads/RenegadeSSMods.zip
http://www.wittebolx.com/downloads/LuaEngine.zip
i believe you asked for both..


Re: Renegade SSMods Archive [message #350560 is a reply to message #350321] Thu, 11 September 2008 19:17 Go to previous messageGo to next message
marcin205 is currently offline  marcin205
Messages: 178
Registered: March 2007
Location: Poland
Karma: 0
Recruit
thx Big Ups

[Updated on: Thu, 11 September 2008 19:17]

Report message to a moderator

Re: Renegade SSMods Archive [message #367480 is a reply to message #350321] Fri, 16 January 2009 01:28 Go to previous messageGo to next message
wittebolx is currently offline  wittebolx
Messages: 332
Registered: May 2007
Location: the netherlands
Karma: 0
Recruit
*bump* -mod release forum

Re: Renegade SSMods Archive [message #367616 is a reply to message #350321] Sat, 17 January 2009 03:58 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
They need to be attached to the post, rather than links to your site.


Re: Renegade SSMods Archive [message #367619 is a reply to message #350321] Sat, 17 January 2009 04:25 Go to previous messageGo to next message
mrãçķz is currently offline  mrãçķz
Messages: 3069
Registered: August 2007
Karma: 0
General (3 Stars)
Permabanned for trying and failing DDoS
Im working on a own VET sytem with some ccol functions Very Happy i think im gonna release it then Very Happy
Re: Renegade SSMods Archive [message #367624 is a reply to message #350321] Sat, 17 January 2009 05:05 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
Download the SSGM version for reborn that I released on the reborn forums a while back. It contains the source code to the veteran system that Reborn uses. It's based on the same veteran code I released on these boards a long time ago, but has been extended to reward people who repair stuff too, and some other nice features using the little white text in the top left hand corner to send players messages about there veteran status.
The source code also contains allot of other neat features.

http://cncreborn.planetcnc.gamespy.com/forum3/viewtopic.php?f=2&t=2477



Re: Renegade SSMods Archive [message #367627 is a reply to message #350321] Sat, 17 January 2009 05:26 Go to previous messageGo to next message
mrãçķz is currently offline  mrãçķz
Messages: 3069
Registered: August 2007
Karma: 0
General (3 Stars)
Permabanned for trying and failing DDoS
Very nice work reborn Thumbs Up Thanks very much



class RTCChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTCChatCommand> RTCChatCommandReg("!Swap",CHATTYPE_ALL,0,GAMEMODE_ALL);


class RTC2ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC2ChatCommand> RTC2ChatCommandReg("!SWAP",CHATTYPE_ALL,0,GAMEMODE_ALL);



class RTC3ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC3ChatCommand> RTC3ChatCommandReg("!swap",CHATTYPE_ALL,0,GAMEMODE_ALL);



You can cutt the code Very Happy with "!Swap;!swap;!SWAP"

class RTC3ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC3ChatCommand> RTC3ChatCommandReg("!Swap;!swap;!SWAP",CHATTYPE_ALL,0,GAMEMODE_ALL);



anyway, im gonna use my VET system for normall Points, no VET Points Very Happy

[Updated on: Sat, 17 January 2009 06:02]

Report message to a moderator

Re: Renegade SSMods Archive [message #367660 is a reply to message #367627] Sat, 17 January 2009 15:17 Go to previous messageGo to next message
MacKinsey is currently offline  MacKinsey
Messages: 83
Registered: March 2008
Karma: 0
Recruit
mǻdrãçķz wrote on Sat, 17 January 2009 06:26

Very nice work reborn Thumbs Up Thanks very much



class RTCChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTCChatCommand> RTCChatCommandReg("!Swap",CHATTYPE_ALL,0,GAMEMODE_ALL);


class RTC2ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC2ChatCommand> RTC2ChatCommandReg("!SWAP",CHATTYPE_ALL,0,GAMEMODE_ALL);



class RTC3ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC3ChatCommand> RTC3ChatCommandReg("!swap",CHATTYPE_ALL,0,GAMEMODE_ALL);



You can cutt the code Very Happy with "!Swap;!swap;!SWAP"

class RTC3ChatCommand : public ChatCommandClass {
	void Triggered(int ID,const TokenClass &Text,int ChatType) {
				if (Settings->EnableRTC) {
RequestTeamChange(Get_Player_Name_By_ID(ID));	
				}
	}
};
ChatCommandRegistrant<RTC3ChatCommand> RTC3ChatCommandReg("!Swap;!swap;!SWAP",CHATTYPE_ALL,0,GAMEMODE_ALL);



anyway, im gonna use my VET system for normall Points, no VET Points Very Happy


He already knows that... http://www.renegadeforums.com/index.php?t=msg&th=31489&start=0&rid=2 3751
Re: Renegade SSMods Archive [message #367661 is a reply to message #350321] Sat, 17 January 2009 15:23 Go to previous message
mrãçķz is currently offline  mrãçķz
Messages: 3069
Registered: August 2007
Karma: 0
General (3 Stars)
Permabanned for trying and failing DDoS
Didnt saw the post
Previous Topic: Make The Field TS Ref
Next Topic: get_part_name, chathooks and strings
Goto Forum:
  


Current Time: Sat Dec 21 07:32:14 MST 2024

Total time taken to generate the page: 0.00876 seconds