Skocz do zawartości

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.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Zdjęcie
Modyfikacja

[Prośba]Przerobienie pluginu vip

Modyfikacja

  • Nie możesz napisać tematu
  • Zaloguj się, aby dodać odpowiedź
2 odpowiedzi w tym temacie

#1 Krzysztof97

    Pomocny

  • Użytkownik

Reputacja: 1
Nowy

  • Postów:50
  • Imię:Krzysztof
  • Lokalizacja:Blubla
Offline

Napisano 31.08.2012 22:58

Witajcie!
Chciałbym, aby ten plugin dawał vipom(niezależnie od teamu 120hp na start), wiem że to pewnie banalne, ale mi nie wychodziło:D

#include <amxmodx>
#include <cstrike>
#include <fun>
#include <hamsandwich>
#define PLUGIN "Hns Vip"
#define VERSION "1.0"
#define AUTHOR "speedkill"
#define ADMIN_CHECK ADMIN_LEVEL_H
new health
new health_add
new health_hs_add
new health_max
new nKiller
new nKiller_hp
new nHp_add
new nHp_max
static const COLOR[] = "^x04"
static const CONTACT[] = ""
new maxplayers
new gmsgSayText
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
health_add = register_cvar("amx_vip_hp", "10")
health_hs_add = register_cvar("amx_vip_hp_hs", "20")
health_max = register_cvar("amx_vip_max_hp", "500")
register_event("DeathMsg", "death", "a", "1>0")
register_clcmd("say /vip","motd")
register_clcmd("say", "handle_say")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
RegisterHam(Ham_Spawn, "player", "abc", 1)
}
public plugin_precache() {
precache_model("models/player/hnsvip/hnsvip.mdl")
}
public client_connect(id) {
if(get_user_flags(id) & ADMIN_LEVEL_H)
{
  new name[32]
  get_user_name(id, name, 31)
  set_hudmessage(255, 0, 0, 0.1, 0.3, 0, 6.0, 12.0)
  show_hudmessage(0, "Wbija vip %s",name)
}
}
public abc(id)
{
if(is_user_alive(id) && get_user_flags(id) & ADMIN_LEVEL_H && get_user_team(id) == 1)
{

  give_item(id, "weapon_smokegrenade")
  give_item(id, "weapon_flashbang")
  give_item(id, "weapon_hegrenade")
  model(id)
}
}
public death()
{
nKiller = read_data(1)
if ( (read_data(3) == 1) && (read_data(5) == 0) )
{
  nHp_add = get_pcvar_num (health_hs_add)
}
else
  nHp_add = get_pcvar_num (health_add)
nHp_max = get_pcvar_num (health_max)
if(!(get_user_flags(nKiller) & ADMIN_LEVEL_H))
  return;
nKiller_hp = get_user_health(nKiller)
nKiller_hp += nHp_add
if (nKiller_hp > nHp_max) nKiller_hp = nHp_max
set_user_health(nKiller, nKiller_hp)
}
public model(id) {
new CsTeams:userTeam = cs_get_user_team(id)
if (userTeam == CS_TEAM_T) {
  cs_set_user_model(id, "hnsvip")
}
else if(userTeam == CS_TEAM_CT) {
  cs_set_user_model(id, "hnsvip")
}
else {
  cs_reset_user_model(id)
}
}
public motd(id) {
show_motd(id,"vip.txt","Hns Vip")
}
public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "/vips") != -1 ) || contain(said, "/vips") != -1 )
  set_task(0.1,"print_adminlist",id)
return PLUGIN_CONTINUE
}
public print_adminlist(user)
{
new adminnames[33][32]
new message[256]
new contactinfo[256], contact[112]
new id, count, x, len
for(id = 1 ; id <= maxplayers ; id++)
  if(is_user_connected(id))
  if(get_user_flags(id) & ADMIN_CHECK)
  get_user_name(id, adminnames[count++], 31)
len = format(message, 255, "%s Vipy online: ",COLOR)
if(count > 0) {
  for(x = 0 ; x < count ; x++) {
   len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
   if(len > 96 ) {
	    print_message(user, message)
	    len = format(message, 255, "%s ",COLOR)
   }
  }
  print_message(user, message)
}
else {
  len += format(message[len], 255-len, "Brak vipow online")
  print_message(user, message)
}
get_cvar_string("amx_contactinfo", contact, 63)
if(contact[0])  {
  format(contactinfo, 111, "%s Contact Server Admin -- %s", COLOR, contact)
  print_message(user, contactinfo)
}
}
print_message(id, msg[]) {
message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}

Pozdrawiam i z góry dzięki za pomoc;d
  • +
  • -
  • 0

#2 Amaroq

    AMXX Contributor

  • Użytkownik

Reputacja: 304
Wszechpomocny

  • Postów:380
  • GG:
  • Steam:steam
  • Imię:Karol
  • Lokalizacja:Łódź
Offline

Napisano 01.09.2012 00:20

proszę

Załączone pliki


  • +
  • -
  • 0
Plugin informujący o zabiciu zakładnika (wysyła do admina na say nick gracza oraz zapisuje o tym logi) - Hostage Killer v1.3.3
DarkGL to mój autorytet.

#3 Krzysztof97

    Pomocny

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:50
  • Imię:Krzysztof
  • Lokalizacja:Blubla
Offline

Napisano 01.09.2012 18:00

Dzięki, ale mam 2 problemy:
1.Czasami model widać jakby go nie było, lub gracz wygląda będąc w ct jak tt i odwrotnie.
2.TT nie dostaje he(czy tam raz na kilka rund).
Pozdrawiam i jeśli ktoś może to poprawić to byłbym wdzięczny:)
  • +
  • -
  • 0





Również z jednym lub większą ilością słów kluczowych: Modyfikacja

Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych