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

Problem z kompilacją

CoD Nowy

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

#1 ewciak

    Pomocny

  • Girl

Reputacja: 14
Początkujący

  • Postów:54
  • Steam:steam
  • Imię:Ewelina
  • Lokalizacja:Warszawa
Offline

Napisano 23.10.2011 14:19

Wyskakują mi takie błędy:


codclass_admiral.sma(121) : error 017: undefined symbol "maxClip"
codclass_admiral.sma(121) : warning 215: expression has no effect
codclass_admiral.sma(121) : error 001: expected token: ";", but found "]"
codclass_admiral.sma(121) : error 029: invalid expression, assumed zero
codclass_admiral.sma(121) : fatal error 107: too many error messages on one line
Compilation aborted.
4 Errors.


oto sma

#include <amxmodx>
#include <amxmisc>
#include <codmod>
#include <fakemeta>
#include <hamsandwich>
#include <cstrike>
#include <fun>

new const nazwa[] = "Admiral(premium)";
new const opis[] = "Ma podwojny skok, 20 hp oraz pelen magazynak za kazde zabojstwo. Natychmiastowe zabicie z noża (PPM).";
new const bronie = (1<<CSW_HEGRENADE)|(1<<CSW_FAMAS)|(1<<CSW_DEAGLE);
new const zdrowie = 30;
new const kondycja = 38;
new const inteligencja = 0;
new const wytrzymalosc = 20;

new skoki[33];
new ostatnio_prawym[33];
new ma_klase[33];
public plugin_init()
{
register_plugin(nazwa, "1.0", "amxx.pl");
cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);

register_forward(FM_CmdStart, "fwCmdStart_MultiJump");

RegisterHam(Ham_TakeDamage, "player", "fwTakeDamage_JedenCios");
RegisterHam(Ham_Weapon_PrimaryAttack, "weapon_knife", "fwPrimaryAttack_JedenCios");
RegisterHam(Ham_Weapon_SecondaryAttack, "weapon_knife", "fwSecondaryAttack_JedenCios");
}
public cod_class_enabled(id)
{
if(!(get_user_flags(id) & ADMIN_LEVEL_H))
{
client_print(id, print_chat, "[Admiral(premium)] Nie masz uprawnien, aby uzywac tej klasy.")
return COD_STOP;
}
give_item(id, "weapon_hegrenade");
ma_klase[id] = true;

return COD_CONTINUE;
}
public cod_class_disabled(id)
{
ma_klase[id] = false;
}
public fwCmdStart_MultiJump(id, uc_handle)
{
if(!is_user_alive(id) || !ma_klase[id])
return FMRES_IGNORED;
new flags = pev(id, pev_flags);
if((get_uc(uc_handle, UC_Buttons) & IN_JUMP) && !(flags & FL_ONGROUND) && !(pev(id, pev_oldbuttons) & IN_JUMP) && skoki[id])
{
skoki[id]--;
new Float:velocity[3];
pev(id, pev_velocity,velocity);
velocity[2] = random_float(265.0,285.0);
set_pev(id, pev_velocity,velocity);
}
else if(flags & FL_ONGROUND)
skoki[id] = 2;
return FMRES_IGNORED;
}
public fwTakeDamage_JedenCios(id, ent, attacker)
{
if(is_user_alive(attacker) && ma_klase[attacker] && get_user_weapon(attacker) == CSW_KNIFE && ostatnio_prawym[id])
{
cs_set_user_armor(id, 0, CS_ARMOR_NONE);
SetHamParamFloat(4, float(get_user_health(id) + 1));
return HAM_HANDLED;
}
return HAM_IGNORED;
}
public fwPrimaryAttack_Knife(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 1;
}
public fwSecondaryAttack_Knife(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 0;
}

public DeathMsg()
{
new killer = read_data(1);
new victim = read_data(2);

if(!is_user_connected(killer))
return PLUGIN_CONTINUE;

if(ma_klase[victim] && !ma_klase[killer])
cod_set_user_xp(killer, cod_get_user_xp(killer)+10);

if(ma_klase[killer])
{
new cur_health = pev(killer, pev_health);
new Float:max_health = 100.0+cod_get_user_health(killer);
new Float:new_health = cur_health+20.0<max_health? cur_health+20.0: max_health;
set_pev(killer, pev_health, new_health);

new weapon = get_user_weapon(killer);
if(maxClip[weapon] != -1);
set_user_clip(killer, maxClip[weapon]);
}


return PLUGIN_CONTINUE;
}

stock set_user_clip(id, ammo)
{
new weaponname[32], weaponid = -1, weapon = get_user_weapon(id, _, _);
get_weaponname(weapon, weaponname, 31);
while ((weaponid = engfunc(EngFunc_FindEntityByString, weaponid, "classname", weaponname)) != 0)
if (pev(weaponid, pev_owner) == id) {
set_pdata_int(weaponid, 51, ammo, 4);
return weaponid;
}
return 0;
}


Chodzi o ten kawałek kodu:
public DeathMsg()
{
new killer = read_data(1);
new victim = read_data(2);
if(!is_user_connected(killer))
  return PLUGIN_CONTINUE;
if(ma_klase[victim] && !ma_klase[killer])
  cod_set_user_xp(killer, cod_get_user_xp(killer)+10);
if(ma_klase[killer])
{
  new cur_health = pev(killer, pev_health);
  new Float:max_health = 100.0+cod_get_user_health(killer);
  new Float:new_health = cur_health+20.0<max_health? cur_health+20.0: max_health;
  set_pev(killer, pev_health, new_health);
  new weapon = get_user_weapon(killer);
  if(maxClip[weapon] != -1);
   set_user_clip(killer, maxClip[weapon]);
}

  • +
  • -
  • 0
Dołączona grafika

Dołączona grafika

#2 radim

    Godlike

  • Moderator

Reputacja: 939
Master

  • Postów:2 725
  • Steam:steam
  • Imię:Arkadiusz
  • Lokalizacja:Janów Lub.
Offline

Napisano 23.10.2011 14:40

#include <amxmodx>
#include <amxmisc>
#include <codmod>
#include <fakemeta>
#include <hamsandwich>
#include <cstrike>
#include <fun>
          
new const nazwa[]   = "Admiral(premium)";
new const opis[]        = "Ma podwojny skok, 20 hp oraz pelen magazynak za kazde zabojstwo. Natychmiastowe zabicie z noża (PPM).";
new const bronie        = (1<<CSW_HEGRENADE)|(1<<CSW_FAMAS)|(1<<CSW_DEAGLE);
new const zdrowie   = 30;
new const kondycja  = 38;
new const inteligencja = 0;
new const wytrzymalosc = 20;
  
new skoki[33];
new ostatnio_prawym[33];
new ma_klase[33];

new const maxClip[31] = { -1, 13, -1, 10,  1,  7,  1,  30, 30,  1,  30,  20,  25, 30, 35, 25,  12,  20,
10,  30, 100,  8, 30,  30, 20,  2,  7, 30, 30, -1,  50 };

public plugin_init()
{
register_plugin(nazwa, "1.0", "amxx.pl");
cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);
  
register_forward(FM_CmdStart, "fwCmdStart_MultiJump");

RegisterHam(Ham_TakeDamage, "player", "fwTakeDamage_JedenCios");
RegisterHam(Ham_Weapon_PrimaryAttack, "weapon_knife", "fwPrimaryAttack_JedenCios");
RegisterHam(Ham_Weapon_SecondaryAttack, "weapon_knife", "fwSecondaryAttack_JedenCios");
}
public cod_class_enabled(id)
{
if(!(get_user_flags(id) & ADMIN_LEVEL_H))
{
  client_print(id, print_chat, "[Admiral(premium)] Nie masz uprawnien, aby uzywac tej klasy.")
  return COD_STOP;
}
give_item(id, "weapon_hegrenade");
ma_klase[id] = true;
  
return COD_CONTINUE;
}
public cod_class_disabled(id)
{
ma_klase[id] = false;
}
public fwCmdStart_MultiJump(id, uc_handle)
{
if(!is_user_alive(id) || !ma_klase[id])
  return FMRES_IGNORED;
new flags = pev(id, pev_flags);
if((get_uc(uc_handle, UC_Buttons) & IN_JUMP) && !(flags & FL_ONGROUND) && !(pev(id, pev_oldbuttons) & IN_JUMP) && skoki[id])
{
  skoki[id]--;
  new Float:velocity[3];
  pev(id, pev_velocity,velocity);
  velocity[2] = random_float(265.0,285.0);
  set_pev(id, pev_velocity,velocity);
}
else if(flags & FL_ONGROUND)
  skoki[id] = 2;
return FMRES_IGNORED;
}
public fwTakeDamage_JedenCios(id, ent, attacker)
{
if(is_user_alive(attacker) && ma_klase[attacker] && get_user_weapon(attacker) == CSW_KNIFE && ostatnio_prawym[id])
{
  cs_set_user_armor(id, 0, CS_ARMOR_NONE);
  SetHamParamFloat(4, float(get_user_health(id) + 1));
  return HAM_HANDLED;
}
return HAM_IGNORED;
}
public fwPrimaryAttack_Knife(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 1;
}
public fwSecondaryAttack_Knife(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 0;
}

public DeathMsg()
{
new killer = read_data(1);
new victim = read_data(2);

if(!is_user_connected(killer))
  return PLUGIN_CONTINUE;

if(ma_klase[victim] && !ma_klase[killer])
  cod_set_user_xp(killer, cod_get_user_xp(killer)+10);

if(ma_klase[killer])
{
  new cur_health = pev(killer, pev_health);
  new Float:max_health = 100.0+cod_get_user_health(killer);
  new Float:new_health = cur_health+20.0<max_health? cur_health+20.0: max_health;
  set_pev(killer, pev_health, new_health);

  new weapon = get_user_weapon(killer);
  if(maxClip[weapon] != -1);
   set_user_clip(killer, maxClip[weapon]);
}


return PLUGIN_CONTINUE;
}

stock set_user_clip(id, ammo)
{
new weaponname[32], weaponid = -1, weapon = get_user_weapon(id, _, _);
get_weaponname(weapon, weaponname, 31);
while ((weaponid = engfunc(EngFunc_FindEntityByString, weaponid, "classname", weaponname)) != 0)
  if (pev(weaponid, pev_owner) == id) {
  set_pdata_int(weaponid, 51, ammo, 4);
  return weaponid;
}
return 0;
}
Brakowało:
new const maxClip[31] = { -1, 13, -1, 10,  1,  7,  1,  30, 30,  1,  30,  20,  25, 30, 35, 25,  12,  20,
10,  30, 100,  8, 30,  30, 20,  2,  7, 30, 30, -1,  50 };

  • +
  • -
  • 1

Chcąc napisać do mnie prywatną wiadomość, wpierw zapoznaj się ze stroną "O mnie" w moim profilu użytkownika [ radim ] !


#3 ewciak

    Pomocny

  • Autor tematu
  • Girl

Reputacja: 14
Początkujący

  • Postów:54
  • Steam:steam
  • Imię:Ewelina
  • Lokalizacja:Warszawa
Offline

Napisano 23.10.2011 16:00

Po raz kolejny dzięki wielkie za pomoc leci oczywiście plusik :)

Jeszcze takie błędy:
codclass_admiral.sma(108) : error 036: empty statement
codclass_admiral.sma(109) : warning 217: loose indentation
1 Error.
Could not locate output file codclass_admiral.amxx (compile failed).

ma ktoś jakiś pomysł co jest nie tak?

Użytkownik ewciak edytował ten post 23.10.2011 14:46

  • +
  • -
  • 0
Dołączona grafika

Dołączona grafika





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

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

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