Pages:
Author

Topic: [GP] GoldPieces - An expandable digital currency for online multiplayer gaming - page 47. (Read 131317 times)

sr. member
Activity: 420
Merit: 250
There's a tip bot on GP-Dice.com where you can get free coins also just by chatting and being part of the community! Smiley

The site is really laggy atm, can you figure out what wrong with it please?

Looks like someone is trying to crash the server with a ton of request. I'l get some protection up. Humanity is so disappointing at times.

You said it.
hero member
Activity: 677
Merit: 500
There's a tip bot on GP-Dice.com where you can get free coins also just by chatting and being part of the community! Smiley

The site is really laggy atm, can you figure out what wrong with it please?

Looks like someone is trying to crash the server with a ton of request. I'l get some protection up. Humanity is so disappointing at times.
hero member
Activity: 742
Merit: 500
There's a tip bot on GP-Dice.com where you can get free coins also just by chatting and being part of the community! Smiley

The site is really laggy atm, can you figure out what wrong with it please?
hero member
Activity: 677
Merit: 500
There's a tip bot on GP-Dice.com where you can get free coins also just by chatting and being part of the community! Smiley
hero member
Activity: 677
Merit: 500
Here's some basic code for those of you working on new games. This is a deposit script that checks for new deposits. You must be running the wallet on your server and include the jsonRPCClient.php file. I'l put this all into a class soon for you and include the required tables. I'm sure there's room for improvement, feel free to chime in.

Add this file to your crontab and run it every minute or two.
Code:
$wallet=new jsonRPCClient($driver_login);


$transactions = $wallet->listtransactions('',256);
/* go through each of these 256 transactions we got from the wallet */
foreach($transactions as $tx){
if ($tx['category']=='receive')
{
$amount = $tx['amount'];
$txid = $tx['txid'];
$confirmations = $tx['confirmations'];
$address=$tx['address'];

$ssql=mysql_query("SELECT * FROM `bank_deposits` WHERE txid='$txid'");
if (mysql_num_rows($ssql)<1){
/* this does not exist in the banks archive, we must create it */
mysql_query("INSERT INTO `bank_deposits` (`amount`,`txid`,`confirmations`,`address`) VALUES ('$amount','$txid','$confirmations','$address')");

} else {
$deposit = mysql_fetch_array($ssql);
/* check if it has more than 3 confirmations */
if ($confirmations>2)
{
/* its in the database already and has enough confirmations,  has it been credited? */
if ($deposit['credited']=='0')
{
/* it hasn't been credited yet! lets do it. */
mysql_query("UPDATE  `bank_deposits` SET  `credited` =  '1' WHERE  `txid` ='$txid';");
/* add to users balance */
mysql_query("UPDATE `players` SET balance = balance+$amount WHERE `deposit_address`='$address';");
} else {
//it has been credited, so we're done here.
}
} else {

/* not three confirmations yet, so update confirmations */

mysql_query("UPDATE `bank_deposits` SET confirmations='$confirmations' WHERE `txid`='$txid'");

}
}
}
}
?>
hero member
Activity: 677
Merit: 500
GL all I sold out

Sad to see ya go buddy! Where did you dump? Doesn't seem to be much volume today on Bittrex.

Cheers,
~Inkha

The #3 wallet is depleting very slowly but apart from that, the rest seems to be slowly working its way out of trex.
Also Yesterdays and day before dumps were most likely fake since the distribution stayed the same - apparently someone wants in or wants more in the low 4k range. I gotta free up some BTC then he'll have to up his bid considerably if he wants those GP back  Grin

Here's the distribution 24 hours apart:





Thanks for the visual that's great. I think once we get added to poloniex we will see a sharp rise in interest. We definately have a long ways to go. The beauty of GP is we can be constantly building new games and expanding into the Android, Iphone, and Facebook gaming market as well. It's beautiful for investors because we can continually be adding value to ourselves with these new games and services. I alone have several in the works and more in the planning stages. Cheers to a growing business! I'm treating GP like my company, and the coins act as a sort of share in the company in large amounts.

~Inkha
legendary
Activity: 1246
Merit: 1005
GL all I sold out

Sad to see ya go buddy! Where did you dump? Doesn't seem to be much volume today on Bittrex.

Cheers,
~Inkha

The #3 wallet is depleting very slowly but apart from that, the rest seems to be slowly working its way out of trex.
Also Yesterdays and day before dumps were most likely fake since the distribution stayed the same - apparently someone wants in or wants more in the low 4k range. I gotta free up some BTC then he'll have to up his bid considerably if he wants those GP back  Grin

Here's the distribution 24 hours apart:



hero member
Activity: 677
Merit: 500
GL all I sold out

Sad to see ya go buddy! Where did you dump? Doesn't seem to be much volume today on Bittrex.

Cheers,
~Inkha
hero member
Activity: 677
Merit: 500

Right we still only have a money supply of 744k coins, On target for a money supply of ~3.5m coins in January 2016, At that point staking will be lowered to reduce inflation.

Doesn't seem like we'll hit that at the current rate.  Less coins could be good anyway though.

I'd be happy with less coins as well, We don't want to over inflate ourselves Smiley

I'm working in implementing investing for everyone into http://gp-dice.com as well as staking if you hold a balance there. That should be done today and then i'l start working on finishing up Halhan.com!


And i made a new song you guys can check it out: All In My Head

~Inkha
hero member
Activity: 742
Merit: 500
sr. member
Activity: 357
Merit: 250
sr. member
Activity: 420
Merit: 250

Right we still only have a money supply of 744k coins, On target for a money supply of ~3.5m coins in January 2016, At that point staking will be lowered to reduce inflation.

Doesn't seem like we'll hit that at the current rate.  Less coins could be good anyway though.
full member
Activity: 188
Merit: 100
sector5.xyz - HYPER, GP, LTC
I didn't notice the images were so big  Roll Eyes

This way looks much better:


A simple android app that monitors exchanges and sends user a notification on taskbar when the buy price/sell price hits desired value Smiley
Checks Bittrex and C-Cex for updates every 10 minutes.
http://s000.tinyupload.com/index.php?file_id=07584156091162518831


GX7V6JUUEkjdEc84p6SoTmnCNVw5ak7aBN



Looks very cool, haven't tried it yet.  Will send you a few coin to help, keep up the good work.

Thanks man! Feels good to be appreciated Smiley

Let me know if you encounter any glitches in the app!
sr. member
Activity: 420
Merit: 250
I didn't notice the images were so big  Roll Eyes

This way looks much better:


A simple android app that monitors exchanges and sends user a notification on taskbar when the buy price/sell price hits desired value Smiley
Checks Bittrex and C-Cex for updates every 10 minutes.
http://s000.tinyupload.com/index.php?file_id=07584156091162518831


GX7V6JUUEkjdEc84p6SoTmnCNVw5ak7aBN



Looks very cool, haven't tried it yet.  Will send you a few coin to help, keep up the good work.
sr. member
Activity: 340
Merit: 250
already a mac wallet available Huh
full member
Activity: 188
Merit: 100
sector5.xyz - HYPER, GP, LTC
Windows 7 64bit

I think I could code something similar Smiley which exchanges do you need the most?
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
full member
Activity: 188
Merit: 100
sector5.xyz - HYPER, GP, LTC
Is anyone aware of a desktop version of similar software that can pop-up price notifications?

Vegas


What's your OS?
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
Is anyone aware of a desktop version of similar software that can pop-up price notifications?

Vegas
sr. member
Activity: 340
Merit: 250
I didn't notice the images were so big  Roll Eyes

This way looks much better:


A simple android app that monitors exchanges and sends user a notification on taskbar when the buy price/sell price hits desired value Smiley
Checks Bittrex and C-Cex for updates every 10 minutes.
http://s000.tinyupload.com/index.php?file_id=07584156091162518831


GX7V6JUUEkjdEc84p6SoTmnCNVw5ak7aBN




Yeah man !!! This is much better thank you  Grin
Pages:
Jump to: