• 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!

PHP Change Shop Points into Tibia Coins Auction Char

Indahouse

Member
Joined
May 13, 2015
Messages
79
Reaction score
13
Hello , i have searched on github and posts of @Znote but i dont find the solution, i have founded convert ingame store tibia coins into shop points, but not shop points into tibia coins.

I Have tried change somethings on auctionchar.php for search into ' accounts ' ' coins ' instead of ' znote_accounts ' ' points ', but have tried all possibilities and i think im wrong

This is why i try change on auctionchar.php ( all before was znote_account and points, instead of coins FROM 'accounts ' ) i have saved the original file.

What i want is just buy and sell characters with Tibia coins

Ps: I Try add the code but seems is more than 25000 digits and i can't post it is the auctionchar.php
Post automatically merged:

Well i have found a similar solution for this,
Add in game an item like 16101 ( premium scroll )
And in scripts ( actions ) , for TFS 1.3 ( tibia 12x )

so i made this script, on use is giving correctly 10 Shop Points,
Anyway if anyone know how to ( change into tibia coins in website Znote ) i want the solutions, thanks you

Lua:
local shopPoint = Action()

function shopPoint.onUse(player, item, fromPosition, target, toPosition, isHotkey)
local points = 10 -- quantidade de coins que o item vai dar
  db.query("UPDATE `znote_accounts` SET `points` = `points` + '" .. points .. "' WHERE `id` = '" .. player:getAccountId() .. "';")
  player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You received "..points.." Shop Points")
  item:remove(1)
  return true
end

shopPoint:id(16101)
shopPoint:register()
 
Last edited:
Back
Top