tarantonio

Results 37 comments of tarantonio

You have to change website too to make a bid because it looks for player balance, so I think that would be more suitable to add bank System to bank...

Nice workaround, you can replace that: `(SELECT `balance` FROM `players` WHERE `players`.`id` = `highest_bidder`) AS `balance` FROM `houses` WHERE `owner` = 0 AND `bid_end` != 0 AND `bid_end` < "...

You need to change website too to look for depot instead balance.

You have to look on RME for that, but I'm not sure atm. How do you place a bid? Look at ZnoteAAC for example: `$bid_char = &$_POST['char']; $bid_amount = &$_POST['amount'];...

I really like your approach but this issue fix cannot be applied to all, because almost all the people are using premade website frontends like Znote or gesior and they...

Despite your solution could not be suitable for all nostalrius users, I would like to see it and if you want to share it, it will be great!

In startup.lua there is this code: `if balance >= lastBid then db.query("UPDATE `players` SET `balance` = " .. (balance - lastBid) .. " WHERE `id` = " .. highestBidder) house:setOwnerGuid(highestBidder)...

> Thanks, I actually solved it in the cpp code, so I've got it all working now. > Let me explain how: > I changed in IOMapSerialize::loadHouseInfo to also get...

Working perfectly! For ZnoteAAC users: - You have to disable the balance check to bid on house.php

> > Working perfectly! > > For ZnoteAAC users: > > > > * You have to disable the balance check to bid on house.php > > how disable? can...