Witam szukam takiego pluginu że tylko admin może to zrobić wpisuje w konsoli odpowiednia komende i kazdemu graczowi daje np 2000$
Szukałem lecz nie mogłem znaleść to jest dobre na 4fun.
Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Guest Message by DevFuse
Admin moze dać ludzia kase.
Temat rozp. Wisnia18, 10.08.2011 17:36
4 odpowiedzi w tym temacie
#2
Napisano 10.08.2011 17:47
na flagę a uzycie amx_money <nick> <ile>
/* AMX Mod script.
*
* (c) Copyright 2002-2003, f117bomb
* This file is provided as is (no warranties).
*/
#include <amxmod>
#include <amxmisc>
/*
* Usage: amx_money <authid, nick, @team or #userid> <money>
* Examples:
* amx_money @CT 100 - adds 100 dollars to ct's money
*
*/
public admin_money(id,level,cid) {
if (!cmd_access(id,level,cid,3))
return PLUGIN_HANDLED
new arg[32], arg2[8], name2[32]
read_argv(1,arg,31)
read_argv(2,arg2,7)
get_user_name(id,name2,31)
if (arg[0]=='@'){
new players[32], inum
get_players(players,inum,"ae",arg[1])
if (inum==0){
console_print(id,"No clients in such team")
return PLUGIN_HANDLED
}
for(new a=0;a<inum;++a) {
new money = get_user_money(players[a])
set_user_money(players[a],str_to_num(arg2) + money ,1)
}
switch(get_cvar_num("amx_show_activity")) {
case 2: client_print(0,print_chat,"ADMIN %s: set money on all %s",name2,arg[1])
case 1: client_print(0,print_chat,"ADMIN: set money on all %s",arg[1])
}
console_print(id,"All clients have set money")
}
else {
new player = cmd_target(id,arg,3)
if (!player) return PLUGIN_HANDLED
new money = get_user_money(player)
set_user_money(player,str_to_num(arg2) + money ,1)
new name[32]
get_user_name(player,name,31)
switch(get_cvar_num("amx_show_activity")) {
case 2: client_print(0,print_chat,"ADMIN %s: set money on %s",name2,name)
case 1: client_print(0,print_chat,"ADMIN: set money on %s",name)
}
console_print(id,"Client ^"%s^" has set money",name)
}
return PLUGIN_HANDLED
}
public plugin_init() {
register_plugin("Admin Money","0.9.3","f117bomb")
register_concmd("amx_money","admin_money",ADMIN_LEVEL_A,"<authid, nick, @team or #userid> <money>")
return PLUGIN_CONTINUE
}
If you can dream it, you can do it.
#3
Napisano 10.08.2011 17:48
np w amx super masz taka opcje
Użytkownicy przeglądający ten temat: 1
0 użytkowników, 1 gości, 0 anonimowych


Dodatki SourceMod



Temat jest zamknięty









