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
Nowy Plugin

Plugin VipVip

Nowy Plugin vip

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

#1 Ozzy.

    Życzliwy

  • Użytkownik

Reputacja: 6
Nowy

  • Postów:34
  • GG:
  • Lokalizacja:Kielce
Offline

Napisano 24.05.2012 18:58

Witam,

Poszukuję plugin na VIP'a. Co on ma dokładnie mieć ?

- dostaje 1Flesh dodatkowo
- dostaje 1Smoke dodatkowo
- model (model dla TT i model dla CT)
- 20hp za kazde zabicie
- po wpisaniu /vips pokazuje sie VIPY ONLINE.
- po wpisaniu /vip pokazuje sie informacja co on ma (motd)
- kiedy wchodzi na serwer pisze "Wchodzi Vip - @NICK@"

Proszę o napisanie pluginu od początku lub przerobienie tego:
#include  #include  #include  #include  #define PLUGIN "Hns Vip" #define VERSION "1.0" #define AUTHOR "speedkill" #define ADMIN_CHECK ADMIN_LEVEL_H 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", "100") 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() }


Wiem, że jest mnóstwo Vipów, ale takiego nie znalazłem, proszę o pomoc. Z góry dziękuję.

Pozdrawiam.

Użytkownik reklamowaniecs edytował ten post 24.05.2012 19:04

  • +
  • -
  • 2

Dołączona grafika


#2 Ozzy.

    Życzliwy

  • Autor tematu
  • Użytkownik

Reputacja: 6
Nowy

  • Postów:34
  • GG:
  • Lokalizacja:Kielce
Offline

Napisano 25.05.2012 23:43

@ refresh

dziekuje bardzo za minusa, oczywiscie nie wiem za co. ;)
  • +
  • -
  • 0

Dołączona grafika






Również z jednym lub większą ilością słów kluczowych: Nowy Plugin, vip

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

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