AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [REQ] No weapons and no money for T (https://forums.alliedmods.net/showthread.php?t=91690)

Swuifti 05-04-2009 09:52

[REQ] No weapons and no money for T
 
Hi all i really need a plugin that restricts the weapons for T and the money.

Thank you.

Dores 05-04-2009 09:58

Re: [REQ] No weapons and no money for T
 
There should be many codes out there(at Suggestions/Requests) that do what you want.
Search.

Swuifti 05-04-2009 10:10

Re: [REQ] No weapons and no money for T
 
I did search but ... if i had found anything i would going to make a new thread ;)

Storas1337 05-04-2009 11:48

Re: [REQ] No weapons and no money for T
 
#include <amxmodx>
#include <cstrike>

new PLUGIN [] = "Remove T Money"
new VERSION [] = "1.0"
new AUTHOR [] = "Storas1337'"

new g_Status;

public
plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);

register_event("Money", "eventMoney", "b");

g_Status = register_cvar("amx_remove_money", "1");
}


public
eventMoney(Pl)
{
if (!
get_pcvar_num(g_Status) || get_user_team(Pl) != 1)
return;

if (
cs_get_user_money(Pl) != 0)
cs_set_user_money(Pl, 0);
}

Dores 05-04-2009 13:04

Re: [REQ] No weapons and no money for T
 
Quote:

Originally Posted by Storas1337 (Post 820926)
new AUTHOR [] = "Storas1337'"

Should be:
PHP Code:

new AUTHOR [] = "M1R0n,M'" 


M1R0n,M' 05-04-2009 14:43

Re: [REQ] No weapons and no money for T
 
new AUTHOR [] = "Storas1337'"
omg -.-

TitANious 05-04-2009 16:02

Re: [REQ] No weapons and no money for T
 
He DID wrote "new" AUTHOR, so..

joaquimandrade 05-04-2009 16:17

Re: [REQ] No weapons and no money for T
 
Quote:

Originally Posted by Dores (Post 820981)
Should be:
PHP Code:

new AUTHOR [] = "M1R0n,M'" 


lol (i love the "should be" part)

Swuifti 05-05-2009 20:02

Re: [REQ] No weapons and no money for T
 
nice thanks alote ;)
and does any one know a plugin that restricts the buy zone for T ?


All times are GMT -4. The time now is 22:54.

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