Author

Topic: Primedice.com | Since 2013 | Longest Running Crypto Casino | 113 BTC Jackpot! - page 712. (Read 1990319 times)

newbie
Activity: 11
Merit: 0
Currently collecting feedback for a Primedice UI/UX redesign.

If you have any feedback, please post it here or email us.

If we end up using any of your ideas we will most certainly reward you!

Regarding user experience, I think that every seed pair a user has made bets with should be stored in order to be able to verify previous bets of anyone at any time. Server seeds should automatically be revealed on each bet's page, thus, there would be no need for previous seed display at the provably fair tab.

Also, the bets table is refreshed live, which is a good idea, but ruins the experience if you want to check a specific bet: The user simply doesn't have enough time to click on the ID of a bet before it disappears. I think that the solution would be making the header of the table dock while the user is scrolling down, and as soon as the header has been docked, pause live refresh. When the user scrolls up above the header, making it undocked again, live refresh should be turned on again. (Similar behavior to PoloniBox).

Pagination for at least the "My bets" tab would also come handy. Finally, I think that besides the "High rollers" tab, there should be a "Reckless risktakers" (or similar) tab, showing profitable bets with a multiplier equal to or above 100x.
legendary
Activity: 1570
Merit: 1041
Currently collecting feedback for a Primedice UI/UX redesign.

If you have any feedback, please post it here or email us.

If we end up using any of your ideas we will most certainly reward you!
There are a few things I'd love to see on PD.  One of the first is more background options.  They all pretty much look the same, unless you really study the pattern in the background.  Same color scheme and stuff.  Would be cool to have more variety there.  Even better would be a Night Mode, to make the whole UI darker for us night owls who eat sleep and breathe PD.

An adjustable chat size couldn't hurt too, along with options to change the font size of chat messages, and maybe add emoticons. Smiley  Would make it look a lot more modern.
legendary
Activity: 3192
Merit: 1279
Primedice.com, Stake.com
Currently collecting feedback for a Primedice UI/UX redesign.

If you have any feedback, please post it here or email us.

If we end up using any of your ideas we will most certainly reward you!
legendary
Activity: 3192
Merit: 1279
Primedice.com, Stake.com
Primedice.NET
View on GitHub

Primedice.NET wraps the functionality of the Primedice API in C#.
The project is written in .NET 4.5 as a portable class library.



Getting started

Registering a new user
Code:
using KriPod.Primedice;

var username = "";

// Initialize a new unauthorized instance of PrimediceClient
using (var client = new PrimediceClient()) {
    // Create a new user
    var user = client.Users.Create(username);

    // The following is the most important property of the newly-created user
    // Store the value of AuthToken in order to access the created account later
    var authToken = user.AuthToken;
}

Making a bet with an existing user
Code:
using KriPod.Primedice;

// NOTE: All the monetary amounts are in satoshi by default
var authToken =  "";
var amount = 1; // 0.00000001 BTC
var condition = BetCondition.LowerThan;
var target = 49.5;

// Initialize a new authorized instance of PrimediceClient
using (var client = new PrimediceClient(authToken)) {
    // Place a new bet with the parameters specified above
    client.Bets.Create(amount, condition, target);
}

It cannot withdraw BTC yet, but offers functionality for placing real bets and simulating bets on the client-side! Smiley

Very interesting. Please check your messages.
hui
hero member
Activity: 516
Merit: 502
[...]
View on GitHub

Primedice.NET wraps the functionality of the Primedice API in C#.
The project is written in .NET 4.5 as a portable class library.
[...]

as mentioned in chat i would rename it to "primedice api wrapper for .net" or something else in order to not get confused with the (existing) domainname.
newbie
Activity: 11
Merit: 0
Primedice.NET
View on GitHub

Primedice.NET wraps the functionality of the Primedice API in C#.
The project is written in .NET 4.5 as a portable class library.



Getting started

Registering a new user
Code:
using KriPod.Primedice;

var username = "";

// Initialize a new unauthorized instance of PrimediceClient
using (var client = new PrimediceClient()) {
    // Create a new user
    var user = client.Users.Create(username);

    // The following is the most important property of the newly-created user
    // Store the value of AuthToken in order to access the created account later
    var authToken = user.AuthToken;
}

Making a bet with an existing user
Code:
using KriPod.Primedice;

// NOTE: All the monetary amounts are in satoshi by default
var authToken =  "";
var amount = 1; // 0.00000001 BTC
var condition = BetCondition.LowerThan;
var target = 49.5;

// Initialize a new authorized instance of PrimediceClient
using (var client = new PrimediceClient(authToken)) {
    // Place a new bet with the parameters specified above
    client.Bets.Create(amount, condition, target);
}

It cannot withdraw BTC yet, but offers functionality for placing real bets and simulating bets on the client-side! Smiley
full member
Activity: 121
Merit: 100
Primedice's layout is yet the best, but why I get so much loosing streaks, maybe because too many bets are placed every second ?
legendary
Activity: 2660
Merit: 1141
Last chance to get in for this competition!

https://bitcointalk.org/index.php?topic=1261106.100

Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.

Reply here, if we end up using an idea of yours we'd be more than happy to compensate you! The Bitcointalk community has always been our favourite source of ideas and always will be!

Primedice is lacking nothing except for the speed of rolls and less troll in the chatbox. However if you are looking for suggestion then I will simply suggest to put up some tour regarding how provably fair works in animation ( if possible ) so less people will complain if they lose since they atleast abit will know about how fair the site is
member
Activity: 83
Merit: 10
We could use some sort of reward for whale gamblers like a rakeback..

you can refer such whales and earn hola profits Cheesy
full member
Activity: 224
Merit: 100
We could use some sort of reward for whale gamblers like a rakeback..
hui
hero member
Activity: 516
Merit: 502
[...]
Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.
[...]

it would be nice if you could use the hotkeys when the balance field is focused, so that you could change the bet amount right after the roll without having to click at the right position inside the balance again each roll. (would elminate the need of mouse usage entirely when hotkeys are enabled and you do something else than martingale on 2x).
member
Activity: 116
Merit: 10
Poor guy next door.
Last chance to get in for this competition!

https://bitcointalk.org/index.php?topic=1261106.100

Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.

Reply here, if we end up using an idea of yours we'd be more than happy to compensate you! The Bitcointalk community has always been our favourite source of ideas and always will be!
i think it would be nice that a faucet is random (for people who wagered over 1btc or lets say 10btc)
and that you can win random sats from lets say 2000-50000 something on sheme like freebitco.in
copper member
Activity: 2996
Merit: 2374
Also, from a user experience point of view (Design wise), what do you think Primedice is lacking?
As it stands now, if you use auto roller, you must choose between "high" or "low" when the autoroller is running. I think it would be appealing if the autoroller somehow would allow the high/low choice to alternate under certain criteria. It could either be that it alternates between high and low every roll, or it could be setup so the player could choose that it alternates on "win" and/or "lose". '

Obviously it will not have an effect on the EV of any set of rolls, however gamblers tend to be superstitious and this would allow them to engage in additional superstition. 

As mentioned above, it would be nice to have a jackpot of somesort that pays out under some circumstances. Even if this were to mean that the non-jackpot house edge were to increase.
legendary
Activity: 966
Merit: 1000
Last chance to get in for this competition!

https://bitcointalk.org/index.php?topic=1261106.100

Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.

Reply here, if we end up using an idea of yours we'd be more than happy to compensate you! The Bitcointalk community has always been our favourite source of ideas and always will be!
maybe you should add a jackpot on dice?
regards.
-Katerniko1
hero member
Activity: 812
Merit: 1000
Act #Neutral,Think y'self as a citizen of Universe
Last chance to get in for this competition!

https://bitcointalk.org/index.php?topic=1261106.100

Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.

Reply here, if we end up using an idea of yours we'd be more than happy to compensate you! The Bitcointalk community has always been our favourite source of ideas and always will be!
I am eagerly waiting for the roulette ,which you said is gonna throw out all other's out of the water. Undecided
However, adding a primedice app would be something nice.Smiley
legendary
Activity: 3192
Merit: 1279
Primedice.com, Stake.com
Last chance to get in for this competition!

https://bitcointalk.org/index.php?topic=1261106.100

Also, from a user experience point of view (Design wise), what do you think Primedice is lacking? We'd love some input and/or examples of design related improvements we could make to Primedice. Its been a while since we've given the site a face lift and I'm positive we can enhance and even further simplify Primdice, pushing towards perfecting our mission statement even closer.

Reply here, if we end up using an idea of yours we'd be more than happy to compensate you! The Bitcointalk community has always been our favourite source of ideas and always will be!
full member
Activity: 146
Merit: 100
Hi Stunna

My BTC are stuck somewhere between my wallet and your website.

Could your please fix this problem fast and deposit my BTC in my account ?

Here is my transaction : https://blockchain.info/tx-index/41a3211dc82283192658c6549e67c2cab4a750818c8278e9bb0a1aed0059d39f

Nickname : Glucose2


Solved. Thank you

what was the problem?
hero member
Activity: 861
Merit: 1001
Hi Stunna

My BTC are stuck somewhere between my wallet and your website.

Could your please fix this problem fast and deposit my BTC in my account ?

Here is my transaction : https://blockchain.info/tx-index/41a3211dc82283192658c6549e67c2cab4a750818c8278e9bb0a1aed0059d39f

Nickname : Glucose2


Solved. Thank you
legendary
Activity: 1134
Merit: 1118
I wrote an automute script for reflinks/scams/malware that always reads the last line of my chatlog, informs the user about chatrules and mutes the user

This was your first and only mistake. Don't write auto-mute scripts. You open yourself up to a lot of issues especially with side cases, as well as false detections. If the chat really isn't moderated well enough to catch these (which I sincerely doubt as the staff team seems to have grown significantly since I left), then tell Stunna & MICRO and more mods will be brought on.
full member
Activity: 224
Merit: 100
I played on primedice with $1.00 in BTC and lost all.. but I'm not sad.

try playing with $300, lets see how it goes Tongue
Jump to: