• 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 acc not add items

Canary is not TFS. They're far from compatible.
That's not true.

i have this in scripts/talkactions/znoteshop,lua


i shouyld do something else?

Rep for Help please :)

Use scripts TFS 1.x (RevscriptSys version)
Just drop on data/scripts folder.
 
I have this and items is add but something is wrong in web script point not add - paypal pay was succesfull but i dont get any points
 
where> i think i have it

buy points

<form action="Send Money, Pay Online or Set Up a Merchant Account - PayPal (https://www.paypal.com/cgi-bin/webscr)" method="POST">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="<?php echo hhb_tohtml($paypal['email']); ?>">
<input type="hidden" name="item_name" value="<?php echo $points .' shop points on '. hhb_tohtml($config['site_title']); ?>">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="<?php echo $price; ?>">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="<?php echo hhb_tohtml($paypal['currency']); ?>">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="hidden" name="return" value="<?php echo hhb_tohtml($paypal['success']); ?>">
<input type="hidden" name="cancel_return" value="<?php echo hhb_tohtml($paypal['failed']); ?>">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="notify_url" value="<?php echo hhb_tohtml($paypal['ipn']); ?>" />
<input type="hidden" name="custom" value="<?php echo (int)$session_user_id; ?>">
<input type="submit" value=" PURCHASE " style="font-family: martel;font-size: 18px;background: url('http://i56.servimg.com/u/f56/17/97/98/69/sparks10.gif') repeat scroll 0px 0px transparent;text-shadow: 0px 0px 9px lime;color:lime">
</form>

config

//////////////
/// PAYPAL ///
//////////////
// Send Money, Pay Online or Set Up a Merchant Account - PayPal (https://www.paypal.com/)

// Write your paypal address here, and what currency you want to receive money in.
$config['paypal'] = array(
'enabled' => true,
'email' => '[email protected]', // Example: [email protected]
'currency' => ' EUR ',
'points_per_currency' => 9, // 1 currency = ? points? [ONLY used to calculate bonuses]
'success' => "http://".$_SERVER['HTTP_HOST']."/success.php",
'failed' => "http://".$_SERVER['HTTP_HOST']."/failed.php",
'ipn' => "http://".$_SERVER['HTTP_HOST']."/ipn.php",
'showBonus' => true,
);
 
Back
Top