Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
WC itself looks at the block to player relationship level when considering targets, and I certainly don't want to iterate blocks to average out any that may be owned by hostile factions vs neutral
GetReputationBetweenPlayerAndFaction should not iterate over blocks though, it should just check the reputation between the wc radar user and the target's faction.
IsEnemy (if you have a faction) is: MySession.Static.Factions.GetRelationBetweenFactions(myFaction.FactionId, FactionId).Item1 == MyRelationsBetweenFactions.Enemies;
If you don't have a faction, it uses GetRelationBetweenPlayerAndFaction.
So those "neutrals" you were seeing may have been neutral to you personally by reputation, but are indeed enemies by faction.
WC uses player->block relation for target verification, and the WC hud uses player->faction. I'll take a look at the different results from those checks.