-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auctionChar Sorry if I'm missin something on the configuration #486
Comments
Remove:
From the SQL queries that contains it. |
Thanks for our response. Yes the error changed.
|
There might be a |
Didn't find any ,FROM edited: I got it Znote. As I deleted
Thank you so much. |
Another question. About refund and profit:
When user refund his own character he can't sell it anymore. I created an account with just one character. Put it to sell, wait bid time and refund it back. Now I'm getting that message when trying to sell it again, like I don't have the requirements.
I realized the character is not set as claimed in DB. Idk if thats why this is happening. And about the profit. User who sell his character is not getting points on his account. |
I saw the same problem when changed the system to work on OTX 2.15(tfs 0.4). corrected in a way here, but I can't tell if it's right. I did other tests after and did not find any problems, but idk... here we go: look for you will found something like in line 608
after
All right, now every time a player withdraws for his own account, he can announce again! |
auctionChar.php
string(671) " SELECT
za
.id
ASzaid
, CASE WHENza
.price
>za
.bid
THENza
.price
ELSEza
.bid
END ASprice
,za
.time_begin
,za
.time_end
,p
.vocation
,p
.level
,p
.lookbody
ASbody
,p
.lookfeet
ASfeet
,p
.lookhead
AShead
,p
.looklegs
ASlegs
,p
.looktype
AStype
,p
.lookaddons
ASaddons
FROMznote_auction_player
za INNER JOINplayers
p ONza
.player_id
=p
.id
WHEREp
.account_id
= 999999 ANDza
.claimed
= 0 ANDza
.sold
= 1 ANDza
.bidder_account_id
= 888888 ORDER BYp
.level
desc "(query - SQL error)
Type: select_multi (select multiple rows from database)
Unknown column 'p.lookaddons' in 'field list'
admin_auction.php
string(560) " SELECT
za
.id
ASzaid
,za
.price
,za
.bid
,za
.time_begin
,za
.time_end
,p
.id
ASplayer_id
,p
.name
,p
.vocation
,p
.level
,p
.lookbody
ASbody
,p
.lookfeet
ASfeet
,p
.lookhead
AShead
,p
.looklegs
ASlegs
,p
.looktype
AStype
,p
.lookaddons
ASaddons
FROMznote_auction_player
za INNER JOINplayers
p ONza
.player_id
=p
.id
WHEREp
.account_id
= 999999 ANDza
.claimed
= 0 ANDza
.sold
= 1 ORDER BYza
.time_end
desc "(query - SQL error)
Type: select_multi (select multiple rows from database)
Unknown column 'p.lookaddons' in 'field list'
About the addon part. My server is 7.72 so there is no addons. But I don't think that is the only problem here.
What am I doing wrong here?
The text was updated successfully, but these errors were encountered: