Jump to content

zmyl3

Inactive Member
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by zmyl3

  1. You not Change the Strings from Change gold in the Game Source this is not a Client SRC or Phyton Part error when Phyton Elk show  the Numbers over 2.147.000 Gold is the Packet for show the input Money Slot right and the Client part is right i looking. for Fails String to musst be edit .

     

    Ven

     

    Sorry for my Bad English^^

     

    Edit.

     

     

    Open Char.cpp

     

    Search for " case POINT_GOLD "

     

    and edit "int" to long long long

     

    case POINT_GOLD:
    		{
    			long long newGold = MINMAXLL(0, static_cast<long long>(GetGold()) + static_cast<long long>(amount), g_llMaxGold);
    			SetGold(newGold);
    			val = GetGold();
    		}

    Search " int64_t nTotalMoney = 0;" or long long nTotalMoney = 0;

     

    and replace all " int " to long long and not change "for (int n = 0; n < bItemCount; ++n) "

     

    soo more have i not found by that time .

    Ven.

    Thanks for reply but i have the same thing in my source :) 

    I don't think there's from source.. You have in char.cpp this:
     

    inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());

    I think you edited like that:
     

    snprintf(buf, sizeof(buf), "%s %lld %d %ld %d", 
    		inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());

    Right? Then, the python part is not compatible with long long version, or in your binary something's missing..

    Yep, i have the same thing

    	char buf[51];
    	snprintf(buf, sizeof(buf), "%s %lld %d %ld %d",
            inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());
    	LogManager::instance().CharLog(this, 0, "LOGOUT", buf);

    i don`t think it is from binary because i don`t have errors and warnings and i check all code from binary 3 times. 

     

    Dont use tutorials :) and make yourself, tutorials on internet is wrong :)

    Yeah, stop posting this words on this forum only for +1, if u want to help, do it in another way.

  2. You not Change the Strings from Change gold in the Game Source this is not a Client SRC or Phyton Part error when Phyton Elk show  the Numbers over 2.147.000 Gold is the Packet for show the input Money Slot right and the Client part is right i looking. for Fails String to musst be edit .

     

    Ven

     

    Sorry for my Bad English^^

     

    Edit.

     

     

    Open Char.cpp

     

    Search for " case POINT_GOLD "

     

    and edit "int" to long long long

     

    case POINT_GOLD:
    		{
    			long long newGold = MINMAXLL(0, static_cast<long long>(GetGold()) + static_cast<long long>(amount), g_llMaxGold);
    			SetGold(newGold);
    			val = GetGold();
    		}

    Search " int64_t nTotalMoney = 0;" or long long nTotalMoney = 0;

     

    and replace all " int " to long long and not change "for (int n = 0; n < bItemCount; ++n) "

     

    soo more have i not found by that time .

    Ven.

    Thanks for reply but i have the same thing in my source :) 

    I don't think there's from source.. You have in char.cpp this:
     

    inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());

    I think you edited like that:
     

    snprintf(buf, sizeof(buf), "%s %lld %d %ld %d", 
    		inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());

    Right? Then, the python part is not compatible with long long version, or in your binary something's missing..

    Yep, i have the same thing

    	char buf[51];
    	snprintf(buf, sizeof(buf), "%s %lld %d %ld %d",
            inet_ntoa(GetDesc()->GetAddr().sin_addr), GetGold(), g_bChannel, GetMapIndex(), GetAlignment());
    	LogManager::instance().CharLog(this, 0, "LOGOUT", buf);

    i don`t think it is from binary because i don`t have errors and warnings and i check all code from binary 3 times. 

  3. You not Change the Strings from Change gold in the Game Source this is not a Client SRC or Phyton Part error when Phyton Elk show  the Numbers over 2.147.000 Gold is the Packet for show the input Money Slot right and the Client part is right i looking. for Fails String to musst be edit .

     

    Ven

     

    Sorry for my Bad English^^

     

    Edit.

     

     

    Open Char.cpp

     

    Search for " case POINT_GOLD "

     

    and edit "int" to long long long

     

    case POINT_GOLD:
    		{
    			long long newGold = MINMAXLL(0, static_cast<long long>(GetGold()) + static_cast<long long>(amount), g_llMaxGold);
    			SetGold(newGold);
    			val = GetGold();
    		}

    Search " int64_t nTotalMoney = 0;" or long long nTotalMoney = 0;

     

    and replace all " int " to long long and not change "for (int n = 0; n < bItemCount; ++n) "

     

    soo more have i not found by that time .

    Ven.

    Thanks for reply but i have the same thing in my source :) 

×
×
  • 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.