Jump to content
  • 0
Lelouch vi Britannia

Vote For Points Support

Question

Well the issue was the Coins are unidentified when it goes into the storage.

Here is the script

<?php
class Coins {
	public $server;
	public $coinsID;
	
	public function __construct(Flux_Athena $server, $coinsID)
	{
		$this->server  = $server;
		$this->coinsID = $coinsID;
	}
	
	public function getCoins($accountID)
	{
		$sql = "SELECT amount FROM {$this->server->loginDatabase}.storage WHERE account_id = ? AND nameid = ? LIMIT 1";
		$sth = $this->server->connection->getStatement($sql);
		$sth->execute(array($accountID, $this->coinsID));
		$num = $sth->fetch();
		if ($num) {
			return (int)$num->amount;
		}
		else {
			return 0;
		}
	}
	
	public function setCoins($accountID, $amount)
	{
		$num = $this->getCoins($accountID);
		if (!$num) {
			$sql  = "INSERT INTO {$this->server->loginDatabase}.storage (account_id, nameid, amount) ";
			$sql .= "VALUES (?, ?, ?)";
			$sth  = $this->server->connection->getStatement($sql);
			return $sth->execute(array($accountID, $this->coinsID, $amount));
		}
		else {
			$sql  = "UPDATE {$this->server->loginDatabase}.storage SET amount = ? WHERE account_id = ? AND nameid = ?";
			$sth  = $this->server->connection->getStatement($sql);
			return $sth->execute(array($amount, $accountID, $this->coinsID));
		}
	}
}
?>

 

Edited by Lelouch vi Britannia
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
$sql  = "INSERT INTO {$this->server->loginDatabase}.storage (account_id, nameid, amount, identify) ";
$sql .= "VALUES (?, ?, ?, 1)";

update the insert part it should flag that the item is identified

Link to comment
Share on other sites

  • 0
12 hours ago, Aries said:
$sql  = "INSERT INTO {$this->server->loginDatabase}.storage (account_id, nameid, amount, identify) ";
$sql .= "VALUES (?, ?, ?, 1)";

update the insert part it should flag that the item is identified

Not Working

Link to comment
Share on other sites

  • 0

The amount will only get updated if you tested it on an account with coins already in storage.
Try it again to an account without the coin in the  storage.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.