Jump to content

Recommended Posts

Hello I just have installed the offline shop system It works but when i withdraw some yangs in my bank the amount of yang does not decrease from the bank but I get them.

Here is the function that I think does the job :

DBManager::instance().DirectQuery("UPDATE player.player SET money = money - %u WHERE id = %u", dwRequiredMoney, ch->GetPlayerID());

I would be grateful if someone could help me.

Thank in advance.

Link to comment
https://metin2.dev/topic/12614-unlimited-bank/
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

On 12.07.2016 at 0:22 AM, rorschach said:

Hello I just have installed the offline shop system It works but when i withdraw some yangs in my bank the amount of yang does not decrease from the bank but I get them.

Here is the function that I think does the job :

DBManager::instance().DirectQuery("UPDATE player.player SET money = money - %u WHERE id = %u", dwRequiredMoney, ch->GetPlayerID());

I would be grateful if someone could help me.

Thank in advance.

try changing to

DBManager::instance().DirectQuery("UPDATE player.player SET gold = gold - %u WHERE id = %u", dwRequiredMoney, ch->GetPlayerID());

 

I think you need also check condition if price > money

just replace money to gold because in player.player there's gold field, not money

Link to comment
https://metin2.dev/topic/12614-unlimited-bank/#findComment-72476
Share on other sites

Thanks for the answer, the system works with a new column(money) in player.player so I think you are wrong. I think I solved when I changed the coding of the money column. But I have two last problem, the first is that when I put a weapon with 1-5 bonus(maybe some bonus works I only check with average body/magic damage) and then I close the shop, the item lost it's bonus. The second is that I can't change the price of an item after having created the shop.

Link to comment
https://metin2.dev/topic/12614-unlimited-bank/#findComment-72542
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.