1
Pytania i problemy / Pomocy! Problem z texturą.
« dnia: 2014-05-01, 11:19 »
Zmien nazwe pliku textures.vdf na textures.vdf.disabled.
Ta sekcja pozwala Ci zobaczyć wszystkie wiadomości wysłane przez tego użytkownika. Zwróć uwagę, że możesz widzieć tylko wiadomości wysłane w działach do których masz aktualnie dostęp.
Ostatnio aktywny: * 2012-05-15, 22:15
FUNC VOID AI_PlayAni (VAR C_NPC n0, VAR STRING s0 ) { };
func int Hero_HasBanditArmor ()
{
var c_item armor;
var int armorInstance;
armor = Npc_GetEquippedArmor(hero);
armorInstance = Hlp_GetInstanceID(armor);
if ((armorInstance == BAN_ARMOR_L) ||(armorInstance == BAN_ARMOR_M) || (armorInstance == BAN_ARMOR_H))
{
return TRUE;
};
};
func int C_OtherIsToleratedEnemy(var C_NPC slf, var C_NPC oth)
{
PrintDebugNpc (PD_ZS_DETAIL, "C_OtherIsToleratedEnemy");
if (C_NpcIsHuman(slf))
{
var c_item armor;
var int armorInstance;
armor = Npc_GetEquippedArmor(oth);
if (Hlp_IsValidItem(armor))
{
armorInstance = Hlp_GetInstanceID(armor);
if (slf.npctype == NPCTYPE_ROGUE)
{
if (Hero_HasBanditArmor())
{
return TRUE;
};
};
};
};
//-------- Orkverfolger --------
if (C_NpcIsOrc(slf))
{
PrintDebugNpc (PD_ZS_DETAIL, "...'self' ist Ork!");
//---- Ulu-Mulu in der Hand ? ----
var C_ITEM weapon;
var int weaponInstance;
weapon = Npc_GetReadiedWeapon(oth);
if (Hlp_IsValidItem(weapon))
{
weaponInstance =Hlp_GetInstanceID(weapon);
PrintDebugString(PD_ZS_DETAIL, "...gezogene Waffe von 'other': ", weapon.name);
if (weaponInstance == UluMulu)
{
PrintDebugNpc(PD_ZS_DETAIL, "...true!");
return TRUE;
};
};
//---- Ulu-Mulu equipped ? ----
weapon = Npc_GetEquippedMeleeWeapon (oth);
if (Hlp_IsValidItem(weapon))
{
weaponInstance =Hlp_GetInstanceID(weapon);
PrintDebugString(PD_ZS_DETAIL, "...equippte Waffe von 'other': ", weapon.name);
if (weaponInstance == UluMulu)
{
PrintDebugNpc(PD_ZS_DETAIL, "...true!");
return TRUE;
};
};
};
PrintDebugNpc (PD_ZS_DETAIL, "...false!");
return FALSE;
};
if (C_OtherIsToleratedEnemy(self, other))
{
PrintDebugNpc (PD_ZS_CHECK, "...Feind wird toleriert!" );
B_TolerateEnemy (self, other);
return;
};
FUNC VOID Mob_CreateItems (VAR STRING mobName, VAR INT itemInstance, VAR INT amount)