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

Logs for bought points v1.3 *Fixed: Zaypay script*

probem33333.png


How can I fix this? :S
 
Use MY zaypay script and NOT my old version uploaded by the idiots developing Gesior. I fixed all those bugs and they didn't...

That's pretty much what I did. Can you PLEASE upload me a GOOD, AWESOME, WORKING zaypay script that YOU made? I just want to make this work.
I followed the instructions but it didn't make so much difference.
I'm really looking forward into using your version! :peace: thanks
 
Well i noticed that you didnt add sql query which lists all the bought points in to table. So here it is ^^

Code:
$main_content .= '<table style="margin:20px 0 10px 0;" border=0 cellspacing=1 cellpadding=4 width=100%>
<tr bgcolor='.$config['site']['vdarkborder'].'><td>ID</td><td>Account ID</td><td>Amount</td><td>Type</td><td>Code</td><td>Paypal Email</td><td>Date</td></tr>
';
$i = 0;
foreach($SQL->query('SELECT id, amount, type, accountid, code, paypalmail, date FROM z_shop_points_bought WHERE accountid IS NOT NULL') as $muut)
{
	$i++;
	$main_content .= '<tr bgcolor="' . (is_int($i / 2) ? $config['site']['lightborder'] : $config['site']['darkborder']) . '">
		<td>' .$muut['id']. '</td>
		<td>' .$muut['accountid']. '</td>
		<td>' .$muut['amount']. '</td>
		<td>' .$muut['type']. '</td>
		<td>' .$muut['code']. '</td>
		<td>' .$muut['paypalmail']. '</td>
		<td>' .$muut['date']. '</td>
	</tr>';
}
$main_content .= '</table>';
 
Well i noticed that you didnt add sql query which lists all the bought points in to table. So here it is ^^

Code:
$main_content .= '<table style="margin:20px 0 10px 0;" border=0 cellspacing=1 cellpadding=4 width=100%>
<tr bgcolor='.$config['site']['vdarkborder'].'><td>ID</td><td>Account ID</td><td>Amount</td><td>Type</td><td>Code</td><td>Paypal Email</td><td>Date</td></tr>
';
$i = 0;
foreach($SQL->query('SELECT id, amount, type, accountid, code, paypalmail, date FROM z_shop_points_bought WHERE accountid IS NOT NULL') as $muut)
{
	$i++;
	$main_content .= '<tr bgcolor="' . (is_int($i / 2) ? $config['site']['lightborder'] : $config['site']['darkborder']) . '">
		<td>' .$muut['id']. '</td>
		<td>' .$muut['accountid']. '</td>
		<td>' .$muut['amount']. '</td>
		<td>' .$muut['type']. '</td>
		<td>' .$muut['code']. '</td>
		<td>' .$muut['paypalmail']. '</td>
		<td>' .$muut['date']. '</td>
	</tr>';
}
$main_content .= '</table>';

I've implemented it into admin panel.
There is a link in the first post.
 
Man, this zaypay script doesn't work for me, i configured all good, this even change z_shop_points_bought in database but players don't gain sms points. Can anyone fix this ? I don't know php :/
 
As stian said, you need a average IQ to make the script the successful. Yours are for sure loweer :(
 
Sorry for double but your daopay seems not to work either. <_<

Players do not get they're points :huh:

Please try to fix this:$ I've tried everything:(
 
Back
Top