-
Content Count
86 -
Joined
-
Last visited
Community Reputation
6 NeutralAbout revengertmt

-
Rank
Friendly
Informations
-
Gender
Male
Recent Profile Visitors
-
revengertmt started following Rakancito
-
revengertmt started following Offline Shop (Premium Private Shop)
-
can you upload .py files?
-
revengertmt started following xP3NG3Rx
-
c++ sourcecode for switchbot.dll hack
revengertmt replied to SulTaN's question in Questions & Answers
take the source click -
open Switchbot Myjago with alternative bonuses
revengertmt replied to Klaus's question in Questions & Answers
up -
solved Search Woltlab Suite 5.1.3 Updatepackage
revengertmt replied to Bercol's question in Questions & Answers
?????:( reupload? -
go in navicat on player database in skill_proto tables search skill what you want to increase the range, and select him example: ( skill 94 Belssing of dragon) and roll to right at collum dwTargetRange then increase the range of skill I will back with some photo //up
- 1 reply
-
- party buff
- party
-
(and 11 more)
Tagged with:
-
open etc_drop_item change load by name to load by vnum
revengertmt replied to Traceur3RUN's question in Questions & Answers
// LOCALE_SERVICE const int FILE_NAME_LEN = 256; char szCommonDropItemFileName[FILE_NAME_LEN]; char szETCDropItemFileName[FILE_NAME_LEN]; char szMOBDropItemFileName[FILE_NAME_LEN]; char szDropItemGroupFileName[FILE_NAME_LEN]; char szSpecialItemGroupFileName[FILE_NAME_LEN]; char szMapIndexFileName[FILE_NAME_LEN]; char szItemVnumMaskTableFileName[FILE_NAME_LEN]; char szDragonSoulTableFileName[FILE_NAME_LEN]; snprintf(szCommonDropItemFileName, sizeof(szCommonDropItemFileName), "%s/common_drop_item.txt", LocaleService_GetBasePath().c_str()); snprintf(szETCDropItemFileName, sizeof(sz -
have a little bug....
-
revengertmt started following Koray
-
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
up! -
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
How i can combine this 2 sys???? switch (item->GetVnum()) { case 80003: case 80004: case 80005: case 80006: case 80007: { static const int sGold[5] = { 50000, ///< 80003 100000, ///< 80004 500000, ///< 80005 1000000, ///< 8000 -
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
I have edited! bool CHARACTER::ChangeGoldBars(DWORD dwVnum) { long long dlCount = 0; for(int i = 0; i < GOLD_BARS_NUM; i++) { if(GoldBarsItems[i] == dwVnum) { dlCount = GoldBarsValue[i]; break; } } if(dlCount ==0) return false; SQLMsg* pMsg = DBManager::instance().DirectQuery("UPDATE player.player SET gold = gold + '%lld' WHERE id = '%d'", dlCount,GetPlayerID()); bool bSucc = (pMsg->uiSQLErrno == 0); delete(pMsg); if (!bSucc) { sys_err("[GOLD] Nu poate fi predat!(a aparut o eroare)"); } else { LogManager::instance().GoldBarsLog(GetAID(), GetPl -
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
-
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
wtf? char.cpp:7545: error: 'ChangeGold' was not declared in this scope -
revengertmt started following Ikarus_
-
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
about the same problem .... I want to save myself in the log table when using one of: vnum, written above -
open How to? Search shop and Log table
revengertmt replied to revengertmt's question in Questions & Answers
bro you are amazing!:X tnx can you help me improve this??? char.cpp void CHARACTER::ChangeGold(long gold) { DBManager::instance().SendMoneyLog(MONEY_LOG_QUEST, GetPlayerID(), gold); PointChange(POINT_GOLD, gold, true); } char.h void ChangeGold(long gold = 0); char_item.cpp switch (item->GetVnum()) { case 80003: // 50kk case 80004: // 100kk case 80005: // 250kk case 80006: // 500kk??? case 80007: // 1kkk??? int idx[5]; idx[0] = 50000000; idx[1] = 100000000; idx[2] = 250000000; idx[3] = 500000000; idx[4] = 1000000000; int idax