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

Kompilacja Vipa do JBnie moge skompilowac ;/


  • Zamknięty Temat jest zamknięty
3 odpowiedzi w tym temacie

#1 Saska

    Nowy

  • Nowy

Reputacja: 0
Nowy

  • Postów:2
  • Imię:robert
  • Lokalizacja:XD
Offline

Napisano 06.08.2011 07:07

Witam,mam problem z kompilacją pewnego pluginu,próbowałem już na amxx.pl/webcompiler.cgi,poprzez kompilacje lokalną ale są 4 błędy:

/tmp/textEZQ7zy.sma(165) : error 017: undefined symbol "id"
/tmp/textEZQ7zy.sma(165) : warning 215: expression has no effect
/tmp/textEZQ7zy.sma(165) : error 001: expected token: ";", but found ")"
/tmp/textEZQ7zy.sma(165) : error 029: invalid expression, assumed zero
/tmp/textEZQ7zy.sma(165) : fatal error 107: too many error messages on one line

Prosiłbym aby mi ktoś to poprawnie przekompilował :)

Dam całą paczkę proszę tylko o kompilację pliku vip_by_manipers.sma

vip jailbreak rar

Użytkownik Saska edytował ten post 06.08.2011 07:08

  • +
  • -
  • 0

#2 speedkill

    Godlike

  • Przyjaciel

Reputacja: 1 592
Godlike

  • Postów:2 733
  • GG:
  • Steam:steam
  • Imię:Michał
  • Lokalizacja:Prudnik
Offline

Napisano 06.08.2011 08:06

Sprawdź Kompilator - AMXX.pl: Support AMX Mod X
#define DAMAGE_RECIEVED

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>

new mpd, mkb, mhb
new maxplayers

new g_MsgSync
new health_add
new health_hs_add
new health_max
new nKiller
new nKiller_hp
new nHp_add
new nHp_max

#if defined DAMAGE_RECIEVED
	new g_MsgSync2
#endif

public plugin_init()
{
	register_plugin("vip_by_manipers", "2.0", "manipers")
	mpd = register_cvar("money_per_damage","0")
	mkb = register_cvar("money_kill_bonus","0")
	mhb = register_cvar("money_hs_bonus","0")
	health_add = register_cvar("amx_vip_hp", "15")
	health_hs_add = register_cvar("amx_vip_hp_hs", "30")
	health_max = register_cvar("amx_vip_max_hp", "135")

	register_event("Damage","Damage","b")
	register_event("DeathMsg","death_msg","a")
	register_logevent("logevent_Round_Start", 2, "1=Round_Start");
        register_logevent("nowa_runda",2,"1=Round_Start");
	register_event("DeathMsg", "hook_death", "a", "1>0")
        register_clcmd("say /kupvipa", "ShowMotd")

	maxplayers = get_maxplayers()

	register_event("Damage", "on_damage", "b", "2!0", "3=0", "4!0")

	g_MsgSync = CreateHudSyncObj()

#if defined DAMAGE_RECIEVED
	g_MsgSync2 = CreateHudSyncObj()
#endif
}

public on_damage(id)
{
	new attacker = get_user_attacker(id)

#if defined DAMAGE_RECIEVED
	// id should be connected if this message is sent, but lets check anyway
	if ( is_user_connected(id) && is_user_connected(attacker) )
	if (get_user_flags(attacker) & ADMIN_LEVEL_H)
	{
		new damage = read_data(2)

		set_hudmessage(255, 0, 0, 0.45, 0.50, 2, 0.1, 4.0, 0.1, 0.1, -1)
		ShowSyncHudMsg(id, g_MsgSync2, "%i^n", damage)
#else
	if ( is_user_connected(attacker) && if (get_user_flags(attacker) & ADMIN_LEVEL_H) )
	{
		new damage = read_data(2)
#endif
		set_hudmessage(0, 100, 200, -1.0, 0.55, 2, 0.1, 4.0, 0.02, 0.02, -1)
		ShowSyncHudMsg(attacker, g_MsgSync, "%i^n", damage)
	}
}

public Damage(id)
{
	new weapon, hitpoint, attacker = get_user_attacker(id,weapon,hitpoint)
	if(attacker<=maxplayers && is_user_alive(attacker) && attacker!=id)
	if (get_user_flags(attacker) & ADMIN_LEVEL_H) 
	{
		new money = read_data(2) * get_pcvar_num(mpd)
		if(hitpoint==1) money += get_pcvar_num(mhb)
		cs_set_user_money(attacker,cs_get_user_money(attacker) + money)
	}
}

public death_msg()
{
	if(read_data(1)<=maxplayers && read_data(1) && read_data(1)!=read_data(2)) cs_set_user_money(read_data(1),cs_get_user_money(read_data(1)) + get_pcvar_num(mkb) - 300)
}

public logevent_Round_Start()
{
    new players[32], player, pnum;
    get_players(players, pnum, "a");
    for(new i = 0; i < pnum; i++)
    {
        player = players[i];
        if(get_user_flags(player) & ADMIN_LEVEL_H)
        {
            give_item(player, "item_kevlar");
        }
    }
}

public hook_death()
{
   // Killer id
   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)
   // Updating Killer HP
   if(!(get_user_flags(nKiller) & ADMIN_LEVEL_H))
   return;

   nKiller_hp = get_user_health(nKiller)
   nKiller_hp += nHp_add
   // Maximum HP check
   if (nKiller_hp > nHp_max) nKiller_hp = nHp_max
   set_user_health(nKiller, nKiller_hp)
   // Hud message "Healed +15/+30 hp"
   set_hudmessage(0, 255, 0, -1.0, 0.15, 0, 1.0, 1.0, 0.1, 0.1, -1)
   show_hudmessage(nKiller, "Healed +%d hp", nHp_add)
   // Screen fading
   message_begin(MSG_ONE, get_user_msgid("ScreenFade"), {0,0,0}, nKiller)
   write_short(1<<10)
   write_short(1<<10)
   write_short(0x0000)
   write_byte(0)
   write_byte(0)
   write_byte(200)
   write_byte(75)
   message_end()
}

public ShowMotd(id)
{
	show_motd(id, "vip.txt")
}

public client_connect(id) 
{ 
     new name[32] 
     get_user_info(id, "name", name, 31)
     if(get_user_flags(id) & ADMIN_LEVEL_H) {
     set_hudmessage(0, 255, 0, 0.05, 0.46, 2, 0.02, 30.0, 0.03, 0.3, 2) 
     show_hudmessage(0, "VIP %s Wchodzi na serwer!",name) 
	}
}

public client_putinserver(vip)
set_task(10.0,"add_power",vip)

public add_power(vip)
{
if(get_user_flags(vip) & ADMIN_LEVEL_H && is_user_alive(vip))
{
set_user_health(vip, 135);
set_user_gravity (vip, 0.6);

}
}

public nowa_runda()
{
for(new i=1;i<=32;i++)
{
if(is_user_connected(i) && is_user_alive(i))
{
if(get_user_flags(i) & ADMIN_LEVEL_H)
{
set_user_health(i, 135);
set_user_gravity (i, 0.6);

}
}
} 
}

  • +
  • -
  • 1

If you can dream it, you can do it.


#3 Saska

    Nowy

  • Autor tematu
  • Nowy

Reputacja: 0
Nowy

  • Postów:2
  • Imię:robert
  • Lokalizacja:XD
Offline

Napisano 06.08.2011 09:32

Plik ładnie się skompilował,ale gdy go wgrałem na serwer nie działa ;/

Dodano 06 sierpień 2011 - 09:47:
Ok lux juz dziala :)

reputacja :D
  • +
  • -
  • 0

#4 Hiroshima

    Godlike

  • Przyjaciel

Reputacja: 1 327
Godlike

  • Postów:4 984
  • Steam:steam
  • Imię:Michał
  • Lokalizacja:Málaga
Offline

Napisano 06.08.2011 10:06

Automatyczna wiadomość


Ten temat został przeniesiony z forum:
AMX Mod X -> Problemy
do
AMX Mod X -> Problemy z pluginami

  • +
  • -
  • 0




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

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