Sell price: Difference between revisions
Jump to navigation
Jump to search
imported>Gnocchi masala m Fix obsolete syntax |
imported>AlbinoRhino m correct return type |
||
Line 9: | Line 9: | ||
name={{#var:name}}| | name={{#var:name}}| | ||
aggregate={{#var:aggregate}}| | aggregate={{#var:aggregate}}| | ||
return_type= | return_type=int| | ||
return_also={{#var:return_also}}| | return_also={{#var:return_also}}| | ||
parameter1={{Param|coinmaster|master}}| | parameter1={{Param|coinmaster|master}}| |
Revision as of 22:42, 9 July 2017
Function Syntax
int sell_price(coinmaster master ,item it )
- master is the coinmaster to query
- it is the item to check
Returns the number of tokens that master will charge you if you want him to sell it to you.
Code Sample
This prints the price for which you can buy an item from a coinmaster.
void print_price(item it) {
if(is_coinmaster_item(it)) {
coinmaster master = it.buyer;
string token = master.token;
int price = buy_price(master, it);
if(price > 1) token += "s";
print("You can buy that for "+ price + " "+token +".");
} else if(is_tradeable(it))
print("You can buy that from the mall for "+mall_price(it)+ " meat.");
else print("You cannot buy that!", "red");
}