I'm using this Store system: https://github.com/brunominervino/custom_tfs/commit/ae72873aee1afc0760e1ead9aa8291d78b66d7a2yes it is, what kind of store system are you using?
Sorry, I wasn't sure which code should I include. Can you tell me which code do I need to include to make it easier for you to help me?Since you didn't follow the rules and include your code there isn't alot I can do.
Got any ideas?Yes, it should not be that hard to achieve that.
I'm using this Store system: https://github.com/brunominervino/custom_tfs/commit/ae72873aee1afc0760e1ead9aa8291d78b66d7a2
Sorry, I wasn't sure which code should I include. Can you tell me which code do I need to include to make it easier for you to help me?
Got any ideas?
`coins` int(11) NOT NULL DEFAULT '0',
Hey, it is possible to change the (Shop Points) for (Tibia Coins), which when donating you give you tibia coins in the game and reflect them on the page@WibbenZ
Znote AAC usesznote_accounts.points
Schema
I will update my shop to support for this when/if it get merged to TFS master repo.
shop.php:
This need to load points from accounts.points (it current loads from znote_accounts.points)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/shop.php#L18)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/shop.php#L33)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/shop.php#L43)
This need to update accounts.points instead of znote_accounts.points:
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/shop.php#L41)
ipn.php (paypal):
This needs to load points from accounts.points (it currently loads from znote_accounts.points)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/ipn.php#L119)
This need to update accounts.points instead of znote_accounts.points:
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/ipn.php#L123)
pagseguro_ipn.php:
This need to load points from accounts.points (it current loads from znote_accounts.points)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/pagseguro_ipn.php#L105)
This need to update accounts.points instead of znote_accounts.points:
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/pagseguro_ipn.php#L109)
paygol_ipn.php:
This need to load points from accounts.points (it current loads from znote_accounts.points)
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/paygol_ipn.php#L47)
This need to update accounts.points instead of znote_accounts.points:
Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/paygol_ipn.php#L51)