Originally Posted by
Silent_Warrior
i got a problem with recently patch on garena:

now all chests/boxes displays on minimap like strongboxes...
Garena CIS ONLY!!!
Code:
From efc3049d9ff1b569149d0e70f0e37f3ca634eb71 Mon Sep 17 00:00:00 2001
From: doragon <[email protected]>
Date: Sat, 13 Jun 2015 00:34:22 +0300
Subject: [PATCH] GARENA CIS patch 2
---
config/currency.txt | 1 +
src/Poe/Components/Chest.cs | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/config/currency.txt b/config/currency.txt
index e4b2954..6a81513 100644
--- a/config/currency.txt
+++ b/config/currency.txt
@@ -19,3 +19,4 @@
Сфера вечного
Сфера раскаяния
Сфера ваал
+Перо белого роа
diff --git a/src/Poe/Components/Chest.cs b/src/Poe/Components/Chest.cs
index d1d7f7e..8bb9bfc 100644
--- a/src/Poe/Components/Chest.cs
+++ b/src/Poe/Components/Chest.cs
@@ -9,7 +9,7 @@ public bool IsOpened
public bool IsStrongbox
{
- get { return Address != 0 && M.ReadInt(Address + 52) != 0; }
+ get { return Address != 0 && M.ReadInt(Address + 60) != 0; }
}
}
}
\ No newline at end of file
--
1.9.5.msysgit.0