Raised This Month: $51 Target: $400
 12% 

Advanced Commands (0.16)


Post New Thread Reply   
 
Thread Tools Display Modes
VJScope
Senior Member
Join Date: Jul 2012
Location: Finland
Old 09-03-2012 , 18:10   Re: Advanced Commands (0.16)
Reply With Quote #791

I have tested this plugin and here's what doesn't work in CSGO(at least):
respawn, cash, god

Haven't tested all...
__________________
Strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.
VJScope is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 09-03-2012 , 22:04   Re: Advanced Commands (0.16)
Reply With Quote #792

respawn and god work for me... I'll look at the code again for sm_cash since it looks like it might be coded to only work if game mod is CS:S

I think I have a modified version of this that I did a while back so I never noticed the sm_cash not working.
__________________
View my Plugins | Donate
TnTSCS is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 09-03-2012 , 23:15   Re: Advanced Commands (0.16)
Reply With Quote #793

Here's a version that works with CS:GO (respawn, cash, and god included) and has an included fun command - sm_botsay... allows you to make bots talk... it only works in console (for me) with:
sm_botsay <botname> "message to have the bot say"

Use http://www.quickdiff.com/ to check the difference

Since xaider seems to have retired as of september 2011 (his last post in this thread), I'm not sure if you'll get an official release from him
Attached Files
File Type: sp Get Plugin or Get Source (advcommands.sp - 229 views - 90.8 KB)
File Type: smx advcommands.smx (42.9 KB, 312 views)
__________________
View my Plugins | Donate

Last edited by TnTSCS; 09-03-2012 at 23:18.
TnTSCS is offline
Ares Veteran
Senior Member
Join Date: Jul 2010
Location: Hungary
Old 09-04-2012 , 01:39   Re: Advanced Commands (0.16)
Reply With Quote #794

sm_disarm is crashing linux server after 22/08/12 css update
__________________
P.M.C Clan
pmcfighters.co.nr


Last edited by Ares Veteran; 09-04-2012 at 01:40.
Ares Veteran is offline
Send a message via MSN to Ares Veteran
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 09-04-2012 , 02:04   Re: Advanced Commands (0.16)
Reply With Quote #795

Quote:
Originally Posted by Ares Veteran View Post
sm_disarm is crashing linux server after 22/08/12 css update
most likely need a gamedata update

Try this:
Code:
"Games"
{
	"#default"
	{
		"#supported"
		{
			"game"		"cstrike"
			"game"		"cstrike_beta"
			"game"		"dod"
			"game"		"tf"
		}
		"Offsets"
		{
			"SetModel"
			{
				"windows"	"24"
				"linux"		"25"
			}
			"Weapon_Drop"
			{
				"windows"	"259"
				"linux"		"260"
			}
			"Respawn"
			{
				"windows"	"321"
				"linux"		"322"
			}
			"RemoveAllItems"
			{
				"windows"	"338"
				"linux"		"339"
			}
		}
	}
	"hl2mp"
	{
		"Offsets"
		{
			"SetModel"
			{
				"windows"	"25"
				"linux"		"26"
			}
			"Weapon_Drop"
			{
				"windows"	"219"
				"linux"		"220"
			}
			"RemoveAllItems"
			{
				"windows"	"283"
				"linux"		"284"
			}
		}
	}
	"left4dead"
	{
		"Offsets"
		{
			"SetModel"
			{
				"windows"	"23"
				"linux"		"24"
			}
			"Weapon_Drop"
			{
				"windows"	"262"
				"linux"		"263"
			}
			"Respawn"
			{
				"windows"	"325"
				"linux"		"326"
			}
			"RemoveAllItems"
			{
				"windows"	"345"
				"linux"		"346"
			}
		}
	}
	"left4dead2"
	{
		"Offsets"
		{
			"SetModel"
			{
				"windows"	"26"
				"linux"		"27"
			}
			"Weapon_Drop"
			{
				"windows"	"281"
				"linux"		"282"
			}
			"Respawn"
			{
				"windows"	"346"
				"linux"		"347"
			}
			"RemoveAllItems"
			{
				"windows"	"366"
				"linux"		"367"
			}
		}
	}
}
__________________
View my Plugins | Donate

Last edited by TnTSCS; 09-04-2012 at 02:08.
TnTSCS is offline
MaccaLFC
New Member
Join Date: Sep 2012
Old 09-04-2012 , 04:56   Re: Advanced Commands (0.16)
Reply With Quote #796

For me the command for cash works when i do it in console, but it isnt on the sourcemod admin menu. Cheers, joe.
MaccaLFC is offline
goloria
BANNED
Join Date: Aug 2012
Old 09-04-2012 , 06:47   Re: Advanced Commands (0.16)
Reply With Quote #797

All command are really working and many people not know in just basic command how they work.
goloria is offline
Ares Veteran
Senior Member
Join Date: Jul 2010
Location: Hungary
Old 09-04-2012 , 07:19   Re: Advanced Commands (0.16)
Reply With Quote #798

Quote:
Originally Posted by MaccaLFC View Post
For me the command for cash works when i do it in console, but it isnt on the sourcemod admin menu. Cheers, joe.
You must make you own admin menu. Try these:

Sample Custom Admin Menu

SM Wiki - How to build custom admin menu
__________________
P.M.C Clan
pmcfighters.co.nr


Last edited by Ares Veteran; 09-04-2012 at 07:22.
Ares Veteran is offline
Send a message via MSN to Ares Veteran
VJScope
Senior Member
Join Date: Jul 2012
Location: Finland
Old 09-04-2012 , 11:56   Re: Advanced Commands (0.16)
Reply With Quote #799

Quote:
Originally Posted by TnTSCS View Post
Here's a version that works with CS:GO (respawn, cash, and god included) and has an included fun command - sm_botsay... allows you to make bots talk... it only works in console (for me) with:
sm_botsay <botname> "message to have the bot say"

Use http://www.quickdiff.com/ to check the difference

Since xaider seems to have retired as of september 2011 (his last post in this thread), I'm not sure if you'll get an official release from him
Get Plugin link isn't working. "contact the author" or something. I suppose that .smx below is same?
__________________
Strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.
VJScope is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 09-04-2012 , 12:24   Re: Advanced Commands (0.16)
Reply With Quote #800

Quote:
Originally Posted by VJScope View Post
Get Plugin link isn't working. "contact the author" or something. I suppose that .smx below is same?
You can't use the GetPlugin link due to the custom include files the online compiler users... you can either download the .smx file or compile the .sp yourself.
__________________
View my Plugins | Donate
TnTSCS 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 14:57.


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