Jump to content

fenixplayscz

Inactive Member
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by fenixplayscz

  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 :)

  2. It's an interesting way of allowing more gold trade without source. Clean, and well thought of!

    If i know good, for more than 2kkk store in this item, you must too edit source for max long long

    and when you have max gold in source, why this item need? if you can trade more than 2kkk 

    It's much easier and cleaner to do it like that,because you don't even need to edit source, but still if you want to change the gold limit it's your choice.

    For more than 2kkk you must edit source, so this method its only for max 2kkk

  3. It's an interesting way of allowing more gold trade without source. Clean, and well thought of!

    If i know good, for more than 2kkk store in this item, you must too edit source for max long long

    and when you have max gold in source, why this item need? if you can trade more than 2kkk 

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