• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Znote AAC HOUSE AUCTION SYSTEM

me

New Member
Joined
Aug 25, 2014
Messages
40
Reaction score
2
Anyone know how to remove the time or change it from 24h to less(like a hour or instant)
 
'auctionPeriod' => 24 * 60 * 60, // 24 hours auction time how do I edit this to make it so you can get the house in less then a hour anyone?
 
'auctionPeriod' => 24 * 60 * 60, // 24 hours auction time how do I edit this to make it so you can get the house in less then a hour anyone?
Just edit the 24 (hours)
example; 1 * 60 * 60 = 1 hour
1 * 1 * 60 = 1 minute
1* 1 * 1 = 1 second

>the house won't change owner in-game even if auction time is set to 1 second.
After 1 second other players won't be able to bid on that house, but the house will change owner in-game after the following restart.

If you want players to receive the house instantly it could be easily done with global event that executes every X seconds.
But in that case why not just use the in-game command?
 
Just edit the 24 (hours)
example; 1 * 60 * 60 = 1 hour
1 * 1 * 60 = 1 minute
1* 1 * 1 = 1 second

>the house won't change owner in-game even if auction time is set to 1 second.
After 1 second other players won't be able to bid on that house, but the house will change owner in-game after the following restart.

If you want players to receive the house instantly it could be easily done with global event that executes every X seconds.
But in that case why not just use the in-game command?
1st Thank you for your time to try to help me I am new
"But in that case why not just use the in-game command"= is there one and how do I enable it or use it?:}
 
1st Thank you for your time to try to help me I am new
"But in that case why not just use the in-game command"= is there one and how do I enable it or use it?:}
What TFS (1.0 - 0.4 etc) are you using?
Try to say !buyhouse ingame
 
That's not TFS..

This is the TFS that that datapack is based on https://github.com/otland/forgottenserver
If you have it like this in config.lua,
https://github.com/otland/forgottenserver/blob/master/config.lua#L42
!buyhouse should work ingame. (assuming that you haven't disabled the buy house talkaction)

If you don't know what is talkaction or how they work, I strongly suggest you to read some tutorials first.
 
That's not TFS..

This is the TFS that that datapack is based on https://github.com/otland/forgottenserver
If you have it like this in config.lua,
https://github.com/otland/forgottenserver/blob/master/config.lua#L42
!buyhouse should work ingame. (assuming that you haven't disabled the buy house talkaction)

If you don't know what is talkaction or how they work, I strongly suggest you to read some tutorials first.
I understand what you mean, two systems can be on the server but why if one is faster:) I like to keep both so you can just see if the house is up for sale but ah prices and config is different so I have to edit the xml for houses?
 
Back
Top