Jump to content

Hesher

Banned
  • Posts

    35
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Hesher

  1. Much easy if you add in offlineshop_manager.cpp in function void COfflineShopManager::AddItem if (ch->IsCubeOpen() || ch->IsAcceOpen()) { ch->ChatPacket(CHAT_TYPE_INFO, "You cannot do this."); return ; } and in char.cpp in function void CHARACTER::OpenMyOfflineShop the same thing
  2. colorinfo.py CHR_NAME_RGB_OFFLINE_SHOP = (255, 140, 0) [Hidden Content] just edit ”255, 140 , 0” with your color code
  3. char chatbuf[CHAT_MAX_LEN + 1]; #ifdef ENABLE_CHAT_COLOR_SYSTEM // static const char* colorbuf[] = {" |h|r[寔햇?|cFFffa200|h", " |h|r[遁鞍?|cFFff0000|h", " |h|r[讀安?|cFFffc700|h", " |h|r[警仰]|cFF000bff|h"}; // Arab static const char* colorbuf[] = {"|cFFffa200|H|h[STAFF]|h|r", "|cFFff0000|H|h[Rosu]|h|r", "|cFFffc700|H|h[Galben]|h|r", "|cFF000bff|H|h[Albastru]|h|r"}; int len = snprintf(chatbuf, sizeof(chatbuf), "%s %s : %s", (ch->IsGM()?colorbuf[0]:colorbuf[MINMAX(0, ch->GetEmpire(), 3)]), ch->GetName(), buf); #else int len = snprintf(chatbuf, sizeof(chatbuf), "%s : %s", ch->GetName(), buf); #endif
  4. For respawn time , open cmd_general.cpp and search : if (iTimeToDead > 170) replace with if (iTimeToDead > 180) because 180 = 0 sec
  5. Penger item_scale is incomplete , miss some functions
  6. Check in uitooltip.py class HyperlinkItemToolTip(ItemToolTip):
  7. Another solution is : search in game.py if debugInfo.IsDebugMode() self.ToggleDebugInfo() replace with #if debugInfo.IsDebugMode() #self.ToggleDebugInfo()
  8. char chatbuf[CHAT_MAX_LEN + 1]; #ifdef ENABLE_CHAT_COLOR_SYSTEM // static const char* colorbuf[] = {" |h|r[寔햇?|cFFffa200|h", " |h|r[遁鞍?|cFFff0000|h", " |h|r[讀安?|cFFffc700|h", " |h|r[警仰]|cFF000bff|h"}; // Arab static const char* colorbuf[] = {"|cFFffa200|H|h[STAFF]|h|r", "|cFFff0000|H|h[Rosu]|h|r", "|cFFffc700|H|h[Galben]|h|r", "|cFF000bff|H|h[Albastru]|h|r"}; int len = snprintf(chatbuf, sizeof(chatbuf), "%s %s : %s", (ch->IsGM()?colorbuf[0]:colorbuf[MINMAX(0, ch->GetEmpire(), 3)]), ch->GetName(), buf); #else int len = snprintf(chatbuf, sizeof(chatbuf), "%s : %s", ch->GetName(), buf); #endif if (CHAT_TYPE_SHOUT == pinfo->type) { LogManager::instance().ShoutLog(g_bChannel, ch->GetEmpire(), chatbuf); }
  9. Work but times expires when i have item in inventory . I think its a problem with type 16 only items with type 16 have this problem
  10. Hello, i have a problem with exp ring and thief glove . The problem is when i equip , time still remain 1h/3h etc and bonus is not active Its not server-side, i think its a problem with type 16 or with costume mount
  11. Fix its like this : In ui.py you dont have HideCorners function in class InfoBoard
  12. Hi dev , i have this problem 1204 22:50:25215 :: File "networkModule.py", line 247, in SetGamePhase 1204 22:50:25215 :: File "game.py", line 114, in __init__ 1204 22:50:25216 :: File "uiTarget.py", line 97, in __init__ 1204 22:50:25216 :: File "uiTarget.py", line 699, in __init__ 1204 22:50:25216 :: AttributeError 1204 22:50:25216 :: : 1204 22:50:25216 :: 'InfoBoard' object has no attribute 'HideCorners' 1204 22:50:25216 :: can someone help me?
  13. Poor person, you have not bought the system so no one will give you support
  14. Enter in serverside / OFFLINE_SHOP_CONFIG and change this : OFFLINE_SHOP_NEED_MONEY: 0 500 with this #OFFLINE_SHOP_NEED_MONEY: 0 500
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.