Правила форума Гаранты форума
Размещение рекламы AMX-X компилятор

Здравствуйте, гость Вход | Регистрация

Наши новости:

14-дек
24-апр
10-апр
11-апр

admin_screen2.sma

Статус пользователя skull269
сообщение 12.5.2012, 16:38
Сообщение #1
Стаж: 14 лет

Сообщений: 21
Благодарностей: 5
Полезность: < 0

помогите плз
мне нужно чтобы можно было делать скины на админа
и чтобы можно было скрины сохранять не в игрока на компе а у админа которий делал скрин на игрока.

123

/* AMX Mod X script.
*
* Admin Screen 2 v1.0 by uTg | bigpapajiggs
*
* Based on Admin Screen by Rav
*
* amx_screen <authid/nick/userid> <number of screens>
*
*/

#include <amxmodx>
#include <amxmisc>

new player

//PCVAR
new maxss, ssinterval, timestamptype

public plugin_init()
{
register_plugin("Admin Screen 2", "1.1", "uTg | bigpapajiggs")

register_concmd("amx_screen", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>")

maxss = register_cvar("amx_maxscreens", "10")
ssinterval = register_cvar("amx_ssinterval", "1.0")
timestamptype = register_cvar("amx_timestamptype", "3")
}

public concmd_screen(id, level, cid)
{
//Is the amx_screen'er an admin?
if(!cmd_access(id, level, cid, 3))
{
return PLUGIN_HANDLED
}

//Read the arguements
new arg1[24], arg2[4]
read_argv(1, arg1, 23)
read_argv(2, arg2, 3)

new screens = str_to_num(arg2)
new maxscreens = get_pcvar_num(maxss)

//Let us make sure that there aren't too many screenshots taken
if(screens > maxscreens)
{
console_print(id, "[AMXX] You cannot take that many screenshots!")

return PLUGIN_HANDLED
}

//Does the target exist?
player = cmd_target(id, arg1, 1)
if (!player)
{
return PLUGIN_HANDLED
}

//How many screenshots?
new Float:interval = get_pcvar_float(ssinterval)
new array[2]
array[0] = id
array[1] = player
set_task(interval, "takeScreen", 0, array,2, "a", screens)

return PLUGIN_HANDLED
}

public takeScreen(array[2])
{
new player = array[1]
new id = array[0]

//Get time, admin name, and target name
new timestamp[32], timestampmsg[128], name[32], adminname[32]
get_time("%m/%d/%Y - %H:%M:%S", timestamp, 31)
get_user_name(player, name, 31)
get_user_name(id, adminname, 31)

//No timestamp
if(get_pcvar_num(timestamptype) == 0)
{
client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" **", name, adminname)

//Take the screenshot
client_cmd(player, "snapshot")
}
//Client Print only
else if(get_pcvar_num(timestamptype) == 1)
{
//client_print Timestamp Message
client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)

//Take the screenshot
client_cmd(player, "snapshot")
}
//HUD Message only
else if(get_pcvar_num(timestamptype) == 2)
{
//HUD Timestamp Message
set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4)
format(timestampmsg, 127, "** TIMESTAMP - %s **", timestamp)
show_hudmessage(player, timestampmsg)

//Take the screenshot
client_cmd(player, "snapshot")
}
//Both
else if(get_pcvar_num(timestamptype) == 3)
{
//HUD Timestamp Message
set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4)
format(timestampmsg, 127, "** TIMESTAMP - %s **", timestamp)
show_hudmessage(player, timestampmsg)

//client_print Timestamp Message
client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)

//Take the screenshot
client_cmd(player, "snapshot")
}
return PLUGIN_CONTINUE
}


Отредактировал: umprex, - 12.5.2012, 16:44
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   Цитировать сообщение
noskill
сообщение 12.5.2012, 16:39
Сообщение #2
Стаж: 14 лет

Сообщений: 3086
Благодарностей: 1493
Полезность: 0

Цитата(skull269 @ 12.5.2012, 17:38) *
и чтобы можно было скрины сохранять не в игрока на компе а у админа которий делал скрин на игрока.

это невозможно :biggrin:
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя skull269
сообщение 12.5.2012, 16:42
Сообщение #3
Стаж: 14 лет

Сообщений: 21
Благодарностей: 5
Полезность: < 0

Цитата(csnetua @ 12.5.2012, 17:39) *
это невозможно :biggrin:

Жаль(
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
  Тема закрытаНачать новую тему
 
0 пользователей и 1 гостей читают эту тему: