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

Problem z vipem & adminem


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

#1 dawidpuskar

    Profesjonalista

  • Użytkownik

Reputacja: 1
Nowy

  • Postów:217
  • Imię:Dawid
  • Lokalizacja:Kębłowo
Offline

Napisano 07.08.2012 10:56

Witam, mogl by mi ktos pomoc ? Mam admina normlanie, Kiedy w users.ini daje sobie vipa "NICK" "HASLO" "bit" "ab" i zresetuje mape admin przestaje mi dzialac i wtedy mam tylko vipa. ktos pomoze ?

#include <amxmodx>
#include <amxmisc>
#include <fun>
static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
new maxplayers
new gmsgSayText
#define PLUGIN "VIP part2"
#define VERSION "2.0v"
#define AUTHOR "Dunno"
#define Keysrod (1<<0)|(1<<1)|(1<<9) // Keys: 1234567890
new round = 1
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_menucmd(register_menuid("rod"), Keysrod, "Pressedrod")
register_logevent("logevent_Round_Start", 2, "1=Round_Start")
register_clcmd("awp","HandleCmd")
	 register_clcmd("sg550","HandleCmd")
	 register_clcmd("g3sg1","HandleCmd")
	 register_event("CurWeapon", "event_CurWeapon", "be", "1=1")
	 register_event("CurWeapon", "event_CurWeaponn", "be", "1=1")
	 register_event("CurWeapon", "event_CurWeaponnn", "be", "1=1")
register_clcmd("say /whantvip","ShowMotd")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
// Add your code here...
}
public logevent_Round_Start() {
round++;

new players[32], player, pnum;
get_players(players, pnum, "a");
for(new i = 0; i < pnum; i++)
{
  player = players[i];
  set_user_gravity(player,1.0)
  if(get_user_flags(player) & ADMIN_LEVEL_H)
  {
   if(round > 3) Showrod(player)
  }
}
}
public Showrod(id) {
show_menu(id, Keysrod, "Free VIP Guns^n\w1. Get M4A1+Deagle ^n\w2. Get AK47+Deagle^n0. Exit^n", -1, "rod") // Display menu
}
public Pressedrod(id, key) {
/* Menu:
* VIP Menu
* 1. Get M4A1+Deagle
* 2. Get AK47+Deagle
* 0. Exit
*/
switch (key) {
  case 0: {
   strip_user_weapons (id)
   give_item(id,"weapon_m4a1")
   give_item(id,"ammo_556nato")
   give_item(id,"ammo_556nato")
   give_item(id,"ammo_556nato")
   give_item(id,"weapon_deagle")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"weapon_knife")
   give_item(id,"weapon_hegrenade")
   client_print(id, print_center, "You Taked Free M4A1 and Deagle")
  }
  case 1: {
   strip_user_weapons (id)
   give_item(id,"weapon_ak47")
   give_item(id,"ammo_762nato")
   give_item(id,"ammo_762nato")
   give_item(id,"ammo_762nato")
   give_item(id,"weapon_deagle")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"ammo_50ae")
   give_item(id,"weapon_knife")
   give_item(id,"weapon_hegrenade")
   client_print(id, print_center, "You Taked Free AK47 and Deagle")
  }
  case 9: { // 0
  
  }
}
return PLUGIN_CONTINUE
}
public HandleCmd(id){
	if(get_user_flags(id) & ADMIN_LEVEL_H)
		return PLUGIN_CONTINUE
	client_print(id, print_center, "Sniper's Only For VIP's")
	return PLUGIN_HANDLED
}

public event_CurWeapon(id){
	if(read_data(2) == CSW_AWP){
	 if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
			client_print(id, print_center, "Sniper's Only For VIP's")
			client_cmd(id, "drop")
		}
	}
}
public event_CurWeaponn(id){
	if(read_data(2) == CSW_SG550){
	 if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
			client_print(id, print_center, "Sniper's Only For VIP's")
			client_cmd(id, "drop")
		}
	}
}
public event_CurWeaponnn(id){
	if(read_data(2) == CSW_G3SG1){
	 if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
			client_print(id, print_center, "Sniper's Only For VIP's")
			client_cmd(id, "drop")
		}
	}
}
public ShowMotd(id)
{
show_motd(id, "vip.txt")
}
public client_authorized(id)
{
set_task(30.0, "PrintText" ,id)
}
public PrintText(id)
{
client_print(id, print_chat, "[VIP] write /whantvip and u will see how get VIP and VIP privilegies.")
}
public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -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_LEVEL_H)
	get_user_name(id, adminnames[count++], 31)
len = format(message, 255, "%s VIP 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, "No VIP 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()
}
public client_connect(id)
{
	 new name[32]
	 get_user_info(id, "name", name, 31)
	 if(get_user_flags(id) & ADMIN_LEVEL_H) {
	 set_hudmessage(200, 0, 0, 0.05, 0.65, 2, 0.02, 30.0, 0.03, 0.3, 2)
	 show_hudmessage(0, "Special VIP %s has Entered",name)
}
}

Użytkownik dawidpuskar edytował ten post 07.08.2012 11:13

  • +
  • -
  • 0

#2 emsiti

    Banned

  • Zbanowany

Reputacja: 1
Nowy

  • Postów:22
  • Imię:Łukasz
  • Lokalizacja:Kraków
Offline

Napisano 07.08.2012 11:13

z tego co widzę, to żeby wyświetlić vip.txt musisz wpisać /whantvip

#3 dawidpuskar

    Profesjonalista

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:217
  • Imię:Dawid
  • Lokalizacja:Kębłowo
Offline

Napisano 07.08.2012 11:14

to juz wiem ;d zaraz sobie to zedytuje.. teraz mam inny probem. Pierwszy post edytowalem.
  • +
  • -
  • 0

#4 emsiti

    Banned

  • Zbanowany

Reputacja: 1
Nowy

  • Postów:22
  • Imię:Łukasz
  • Lokalizacja:Kraków
Offline

Napisano 07.08.2012 11:16

"bit" to flagi vipa, dopisz do nich te, które chcesz nadać adminowi.

#5 dawidpuskar

    Profesjonalista

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:217
  • Imię:Dawid
  • Lokalizacja:Kębłowo
Offline

Napisano 07.08.2012 11:34

emsiti plusik leci dziala :D dzięki.
A teraz powie mi ktos jak mam usnac menu broni ?
  • +
  • -
  • 0

#6 Gość_21977_*

  • Gość

Reputacja: 0

Offline

Napisano 07.08.2012 11:36

Automatyczna wiadomość


Ten temat został przeniesiony z forum

AMX Mod XProblemy

do

AMX Mod XProblemy z pluginami

#7 emsiti

    Banned

  • Zbanowany

Reputacja: 1
Nowy

  • Postów:22
  • Imię:Łukasz
  • Lokalizacja:Kraków
Offline

Napisano 07.08.2012 11:49

usuń to:


public Showrod(id) {
show_menu(id, Keysrod, "Free VIP Guns^n\w1. Get M4A1+Deagle ^n\w2. Get AK47+Deagle^n0. Exit^n", -1, "rod") // Display menu
}
public Pressedrod(id, key) {
/* Menu:
* VIP Menu
* 1. Get M4A1+Deagle
* 2. Get AK47+Deagle
* 0. Exit
*/

switch (key) {
case 0: {
strip_user_weapons (id)
give_item(id,"weapon_m4a1")
give_item(id,"ammo_556nato")
give_item(id,"ammo_556nato")
give_item(id,"ammo_556nato")
give_item(id,"weapon_deagle")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"weapon_knife")
give_item(id,"weapon_hegrenade")
client_print(id, print_center, "You Taked Free M4A1 and Deagle")
}
case 1: {
strip_user_weapons (id)
give_item(id,"weapon_ak47")
give_item(id,"ammo_762nato")
give_item(id,"ammo_762nato")
give_item(id,"ammo_762nato")
give_item(id,"weapon_deagle")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"ammo_50ae")
give_item(id,"weapon_knife")
give_item(id,"weapon_hegrenade")
client_print(id, print_center, "You Taked Free AK47 and Deagle")
}
case 9: { // 0

}
}
return PLUGIN_CONTINUE
}

#8 dawidpuskar

    Profesjonalista

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:217
  • Imię:Dawid
  • Lokalizacja:Kębłowo
Offline

Napisano 07.08.2012 12:11

Jak kompikuje w amxx.pl/kompikator to mam takie cos

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team

vip.sma(41) : error 017: undefined symbol "Showrod"

1 Error.
Could not locate output file vip.amxx (compile failed).

  • +
  • -
  • 0

#9 emsiti

    Banned

  • Zbanowany

Reputacja: 1
Nowy

  • Postów:22
  • Imię:Łukasz
  • Lokalizacja:Kraków
Offline

Napisano 07.08.2012 12:34

spróbuj tak:



#include <amxmodx>
#include <amxmisc>
#include <fun>
static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
new maxplayers
new gmsgSayText
#define PLUGIN "VIP part2"
#define VERSION "2.0v"
#define AUTHOR "Dunno"
#define Keysrod (1<<0)|(1<<1)|(1<<9) // Keys: 1234567890
new round = 1
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

register_clcmd("awp","HandleCmd")
register_clcmd("sg550","HandleCmd")
register_clcmd("g3sg1","HandleCmd")
register_event("CurWeapon", "event_CurWeapon", "be", "1=1")
register_event("CurWeapon", "event_CurWeaponn", "be", "1=1")
register_event("CurWeapon", "event_CurWeaponnn", "be", "1=1")
register_clcmd("say /whantvip","ShowMotd")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
// Add your code here...
}



public HandleCmd(id){
if(get_user_flags(id) & ADMIN_LEVEL_H)
return PLUGIN_CONTINUE
client_print(id, print_center, "Sniper's Only For VIP's")
return PLUGIN_HANDLED
}

public event_CurWeapon(id){
if(read_data(2) == CSW_AWP){
if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
client_print(id, print_center, "Sniper's Only For VIP's")
client_cmd(id, "drop")
}
}
}
public event_CurWeaponn(id){
if(read_data(2) == CSW_SG550){
if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
client_print(id, print_center, "Sniper's Only For VIP's")
client_cmd(id, "drop")
}
}
}
public event_CurWeaponnn(id){
if(read_data(2) == CSW_G3SG1){
if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
client_print(id, print_center, "Sniper's Only For VIP's")
client_cmd(id, "drop")
}
}
}
public ShowMotd(id)
{
show_motd(id, "vip.txt")
}
public client_authorized(id)
{
set_task(30.0, "PrintText" ,id)
}
public PrintText(id)
{
client_print(id, print_chat, "[VIP] write /whantvip and u will see how get VIP and VIP privilegies.")
}
public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -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_LEVEL_H)
get_user_name(id, adminnames[count++], 31)
len = format(message, 255, "%s VIP 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, "No VIP 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()
}
public client_connect(id)
{
new name[32]
get_user_info(id, "name", name, 31)
if(get_user_flags(id) & ADMIN_LEVEL_H) {
set_hudmessage(200, 0, 0, 0.05, 0.65, 2, 0.02, 30.0, 0.03, 0.3, 2)
show_hudmessage(0, "Special VIP %s has Entered",name)
}
}


#10 dawidpuskar

    Profesjonalista

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:217
  • Imię:Dawid
  • Lokalizacja:Kębłowo
Offline

Napisano 07.08.2012 13:49

Dziala, jeszcze usunalem ze awp dla wszystkich ale teraz problem bo jak wpisuje /whantvip i /vips to nic sie nie wyswietla.
  • +
  • -
  • 0




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

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