GoldScript Publicado 10 de mayo del 2014 Denunciar Compartir Publicado 10 de mayo del 2014 #include <amxmodx> #include <amxmisc> #include <ColorChat> #define PLUGIN "Menu de Screenshots" #define VERSION "0.0.1" #define AUTHOR "Hard Scripter" //********************Thanks XD And Versions*********************// //* //* //* v0.0.1 : Creacion del Plugin , Publicacion //* //* //* -Starsailor ( Menu de Players ) //* //*************************************************// new maxplayers; public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_clcmd("say /screen","screen") maxplayers = get_maxplayers(); } public screen(id) { new temp1[32] new temp2[2] if (is_user_admin(id)) { new Menu = menu_create("Menu de Screenshots para Admines","capo_handle") for (new i = 1; i <= maxplayers; i++) { if (is_user_connected(i)) { get_user_name(i,temp1,32); num_to_str(i,temp2,2); menu_additem(Menu, temp1,temp2); } } menu_display(id, Menu, 0); } else { ColorChat(id, GREEN, "^3[^4nGamers.net^3]^1 Nesesitas Ser ^4Administrador^1 para Sacar Screen") ColorChat(id, GREEN, "^3[^4nGamers.net^3]^1 Compra tu ^4Administrador^1 en www.ngamers.net/ventas") } } public capo_handle(id, Menu, item) { if (item == MENU_EXIT) { menu_destroy(Menu) return 1 } new iData[6]; new iAccess; new iCallback; new iName[64]; menu_item_getinfo(Menu, item, iAccess, iData, 5, iName, 63, iCallback) client_cmd(id, "amx_sxe_screen %s", iName) return 1 } Enlace al comentario Compartir en otros sitios More sharing options...
Im Author Publicado 10 de mayo del 2014 Denunciar Compartir Publicado 10 de mayo del 2014 Ese client_cmd anda solamente en usuarios No-Steam... fijate una forma de sacar screens que postearon en amxmodx-es Enlace al comentario Compartir en otros sitios More sharing options...
GoldScript Publicado 10 de mayo del 2014 Autor Denunciar Compartir Publicado 10 de mayo del 2014 ah si ya se me olvide de eso de que no anda en steam Enlace al comentario Compartir en otros sitios More sharing options...
Posts recomendados