←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Admin moze dać ludzia kase.

Zablokowany

  • +
  • -
Wisnia18 - zdjęcie Wisnia18 10.08.2011

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.
Odpowiedz

  • +
  • -
speedkill - zdjęcie speedkill 10.08.2011

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  
}
Odpowiedz

  • +
  • -
Hiroshima - zdjęcie Hiroshima 10.08.2011

np w amx super masz taka opcje
Odpowiedz

  • +
  • -
Wisnia18 - zdjęcie Wisnia18 10.08.2011

RPK a jak dać wszystkim ?


amx_dajkase "all" "2000" ?
Odpowiedz
Zablokowany