Pages:
Author

Topic: CoinJack - start your own blackjack casino! - page 11. (Read 36759 times)

legendary
Activity: 1512
Merit: 1057
SpacePirate.io
I bought this script a week ago and I found the installation too complicated on my own. mostly the VPS side setting up my SQL database and wallet software. I PM jhony but haven't heard from him in a few days.

You need a secure AMP stack to start with. I wouldn't suggest putting your wallet on a VPS either, very risky.
legendary
Activity: 1512
Merit: 1057
SpacePirate.io
did the dev correct the dealing of the cards? I mean to deal the 1st card to the player and not to the dealer?

First card still goes to dealer; when I looked at the code myself, it didn't look that easy to change which is why I think it's probably on the future list.

elm
legendary
Activity: 1050
Merit: 1000
did the dev correct the dealing of the cards? I mean to deal the 1st card to the player and not to the dealer?
member
Activity: 107
Merit: 10
I bought this script a week ago and I found the installation too complicated on my own. mostly the VPS side setting up my SQL database and wallet software. I PM jhony but haven't heard from him in a few days.
legendary
Activity: 1135
Merit: 1002
Developer
Anyone have this? How about some bugs? Was any API hacks?

It's a pretty good program, it has a couple of bugs that I'm aware of in v1.4:

1) Card suit color - Displays the wrong color for hearts, diamonds, spades, and clubs. Johnny stated he's got a fix for it on the demo version, but it hasn't been released yet as an update.
2) Check deposit function - The function that checks the wallet for deposits and credits the players needs some more work. A workaround is to turn the function into a cron job. Right now it scans a wallet every 30 seconds per user, so imagine what 30-40 concurrent users does.


It's actually not per user but per whole userbase. So if one user comes to the site and loads deposits checking script (for all users, not just him) and then come new user, it just finds that it was already checked in the last 30 secs so it waits to next 30 secs. So the deposits are actually being checked not more than once in 30 seconds for the whole script.


But it seems you're right with the deposits processing needing to be updated yet.. It doesn't work sometimes so I'm going to inspect it till tomorrow and release the fix with wrong colors fix included too.
elm
legendary
Activity: 1050
Merit: 1000
Anyone have this? How about some bugs? Was any API hacks?

It's a pretty good program, it has a couple of bugs that I'm aware of in v1.4:

1) Card suit color - Displays the wrong color for hearts, diamonds, spades, and clubs. Johnny stated he's got a fix for it on the demo version, but it hasn't been released yet as an update.
2) Check deposit function - The function that checks the wallet for deposits and credits the players needs some more work. A workaround is to turn the function into a cron job. Right now it scans a wallet every 30 seconds per user, so imagine what 30-40 concurrent users does.

so where is the problem for the dev and seller to fix it and sell a working product Huh








legendary
Activity: 1512
Merit: 1057
SpacePirate.io
Anyone have this? How about some bugs? Was any API hacks?

It's a pretty good program, it has a couple of bugs that I'm aware of in v1.4:

1) Card suit color - Displays the wrong color for hearts, diamonds, spades, and clubs. Johnny stated he's got a fix for it on the demo version, but it hasn't been released yet as an update.
2) Check deposit function - The function that checks the wallet for deposits and credits the players needs some more work. A workaround is to turn the function into a cron job. Right now it scans a wallet every 30 seconds per user, so imagine what 30-40 concurrent users does.







newbie
Activity: 42
Merit: 0
Anyone have this? How about some bugs? Was any API hacks?
legendary
Activity: 1135
Merit: 1002
Developer
Wrong colors on the deck bug is repaired by now, check the demo. Thanks for reminding me.

Still needs more work Wink A red spade just appeared in the demo.  ♠_J_red;

Thanks for your continued work on the program.



It actually is repaired, but earlier-generated sha256 results are containing wrong colors yet on our demo site. After one game it should be ok. Thanks for notification!
brand new
Activity: 0
Merit: 0
September 30, 2014, 11:56:42 PM
#83
Hi,

Please send me v1.4. I PM'ed you already.

Cheers
legendary
Activity: 1512
Merit: 1057
SpacePirate.io
Wrong colors on the deck bug is repaired by now, check the demo. Thanks for reminding me.

Still needs more work Wink A red spade just appeared in the demo.  ♠_J_red;

Thanks for your continued work on the program.

legendary
Activity: 1135
Merit: 1002
Developer
No worries, I can live without the max deposit for sure. I thought about it when I read that some player deposited 100 BTC over at primedice and somehow that player ended up losing his balance, I can't imagine trying to help someone find tens of thousands worth of btc floating around.  Just reading that alone gave me seconds thoughts.

Anyway, I think the biggest bug right now seems to be the incorrect color on the deck (spades showing up as red, etc).

Very cool though Cheesy

Wrong colors on the deck bug is repaired by now, check the demo. Thanks for reminding me.
legendary
Activity: 1135
Merit: 1002
Developer
Hi,

Please send me v1.4. I PM'ed you already.

Cheers

Sent
legendary
Activity: 1512
Merit: 1057
SpacePirate.io
September 30, 2014, 04:49:54 PM
#80
No worries, I can live without the max deposit for sure. I thought about it when I read that some player deposited 100 BTC over at primedice and somehow that player ended up losing his balance, I can't imagine trying to help someone find tens of thousands worth of btc floating around.  Just reading that alone gave me seconds thoughts.

Anyway, I think the biggest bug right now seems to be the incorrect color on the deck (spades showing up as red, etc).

Very cool though Cheesy
sr. member
Activity: 386
Merit: 250
September 30, 2014, 02:04:02 PM
#79
I added hot keys to the code. They are nice to have.. might want to add to next release
legendary
Activity: 1135
Merit: 1002
Developer
September 30, 2014, 11:03:56 AM
#78
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.


I have just sent it to you, sorry for delay, I have lost the thread.

Do you want us to implement this into next version of CoinJack? That doesn't sound bad.
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.







I didn't get the update either...

Here is what I have done to enable manual withdraw review in _withdraw.php as a workaround.

    $amount=(double)$_GET['amount'];
    mysql_query("UPDATE `players` SET `balance`=TRUNCATE(ROUND((`balance`-$amount),9),8) WHERE `id`=$player[id] LIMIT 1");
//    $txid=walletRequest('sendtoaddress',array($_GET['valid_addr'],$amount));
//    mysql_query("INSERT INTO `transactions` (`player_id`,`amount`,`txid`) VALUES ($player[id],(0-$amount),'$txid')");
    mysql_query("INSERT INTO `transactions` (`player_id`,`amount`,`txid`) VALUES ($player[id],(0-$amount),'".prot($_GET['valid_addr'])."')");
    $error='no';
//    $con=$txid;
$con='Withdraws are set to Manual Review: Transation will complete within 24 Hours';
  }
}


You've just received it, thanks for reminding me.

To your customization: This is actually not what cloverme was lookig for but thanks anyway, it could be helpful to other people.
sr. member
Activity: 386
Merit: 250
September 30, 2014, 08:55:59 AM
#77
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.


I have just sent it to you, sorry for delay, I have lost the thread.

Do you want us to implement this into next version of CoinJack? That doesn't sound bad.
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.







I didn't get the update either...

Here is what I have done to enable manual withdraw review in _withdraw.php as a workaround.

    $amount=(double)$_GET['amount'];
    mysql_query("UPDATE `players` SET `balance`=TRUNCATE(ROUND((`balance`-$amount),9),8) WHERE `id`=$player[id] LIMIT 1");
//    $txid=walletRequest('sendtoaddress',array($_GET['valid_addr'],$amount));
//    mysql_query("INSERT INTO `transactions` (`player_id`,`amount`,`txid`) VALUES ($player[id],(0-$amount),'$txid')");
    mysql_query("INSERT INTO `transactions` (`player_id`,`amount`,`txid`) VALUES ($player[id],(0-$amount),'".prot($_GET['valid_addr'])."')");
    $error='no';
//    $con=$txid;
$con='Withdraws are set to Manual Review: Transation will complete within 24 Hours';
  }
}
legendary
Activity: 1135
Merit: 1002
Developer
September 30, 2014, 08:26:10 AM
#76
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.


I have just sent it to you, sorry for delay, I have lost the thread.

Do you want us to implement this into next version of CoinJack? That doesn't sound bad.
legendary
Activity: 1512
Merit: 1057
SpacePirate.io
September 30, 2014, 08:16:59 AM
#75
Has anybody received the 1.4 update yet? I still have my site shutdown from the double-withdrawal issue.

It would be great if the player deposit could be limited too, if anyone has a workaround for that, let me know.





legendary
Activity: 1400
Merit: 1001
Undeads.com - P2E Runner Game
September 28, 2014, 07:24:25 PM
#74
Announcement:

Critical bug has been repaired with version 1.4

v1.4 CHANGELOG
- Layout fixed
- Code improvements
- Minor bugs fixed
- Negative withdraw bug fixed
- Double withdrawal bug fixed


Please PM me for update.
Hi there i sent you a PM yesterday about my interest in this script and the others you have available
has the demo been updated as well as I as i just checked it and some black cards were showing red and some of the red cards showing black
Pages:
Jump to: