Elin Decompiled Documentation EA 23.130 Nightly
Loading...
Searching...
No Matches
GuildMerchant.cs
Go to the documentation of this file.
1public class GuildMerchant : Guild
2{
4
5 public override bool IsCurrentZone => EClass._zone.id == "guild_merchant";
6
7 public long InvestPrice(long a)
8 {
9 if (!base.IsMember)
10 {
11 return a;
12 }
13 return a * 100 / (110 + relation.rank / 2);
14 }
15}
Definition: EClass.cs:5
static Game game
Definition: EClass.cs:8
QuestManager quests
Definition: Game.cs:179
override bool IsCurrentZone
Definition: GuildMerchant.cs:5
long InvestPrice(long a)
Definition: GuildMerchant.cs:7
Definition: Guild.cs:2
Quest Get(string id)
Definition: Quest.cs:7