AdminMod.de
https://www.adminmod.de/

AMX Plugin
https://www.adminmod.de/viewtopic.php?t=6543
Seite 1 von 1

Autor:  Cpt. West [ 20.04.2003, 16:26 ]
Betreff des Beitrags:  AMX Plugin

Mal ne frage ich war mal auf nen Server und da tauchten auf einmal HL monster auf gibt es das als AMX plugin und wen ja wie heißt es gegebenfallls wo gibt es

Thx
West

Autor:  ST4life [ 21.04.2003, 01:06 ]
Betreff des Beitrags: 

Code:
/* AMX Mod script. 
* 
* Monster Plugin Interface 
*  by JustinHoMi 
* 
* This script is an amx interface to botman´s monster plugin 
*   [URL]http://planethalflife.com/botman/monster.shtml[/URL] 
* 
* Usage: amx_monster < monster > < player nick or authid > 
* 
*/ 

#include <amxmod>
#include <amxmisc> 


public admin_monster(id,level,cid){ 
   if (!cmd_access(id,level,cid,3)) 
      return PLUGIN_HANDLED 
   new player[40],monster[16] 
   read_argv(1,monster,16) 
   read_argv(2,player,40) 

   new pid = cmd_target(id,player,14) 
   if (!pid) return PLUGIN_HANDLED 

   new name[40] 
   get_user_name(pid,name,40) 

   console_print(id,"[AMX] Spawning a %s on %s",monster,name) 
   server_cmd("monster %s %s",monster,name) 

   return PLUGIN_HANDLED 
} 

public plugin_init(){ 
   register_plugin("Monsters","0.2","JustinHoMi") 
   register_concmd("amx_monster","admin_monster",ADMIN_LEVEL_B,"< monster > < nick or authid >") 
   return PLUGIN_CONTINUE 
}

Seite 1 von 1 Alle Zeiten sind UTC+01:00
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/