Bitcoin Forum
May 30, 2024, 03:25:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [35] 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
681  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 23, 2015, 01:08:10 PM

   Seuntjie,

   I was going to poke through the code and se if I could figure out that tip problem on PRC, but I can't find the build 10 code.  Do you have a pointer,
or any ideas on that problem?

            Thanks Bob   (Chilly2k)

I updated the file linked in the previous response and the tipping seems to work as far as i tested, just sync your git repo or download the source again and compile it

in the lua code, you need to use tip("accountID",amount), for example: tip("357",0.10015)

     Any tips on compiling this?  I think I read at one point you needed to compile under windows, and that it required something else.  Just a quick pointer would help a bunch.

                    Thanks
682  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 23, 2015, 02:47:51 AM

   Seuntjie,

   I was going to poke through the code and se if I could figure out that tip problem on PRC, but I can't find the build 10 code.  Do you have a pointer,
or any ideas on that problem?

            Thanks Bob   (Chilly2k)
683  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 11, 2015, 02:56:49 PM

   Serious problem on the B10 programmer mode stuff.

     I was trying to do a withdrawl on PRC.  Here is an example of the code.

target = 0.02

function dobet()
   if (win) then
      nextbet = balance / 1024
      withdraw("BTC adddy",target)
   else
      nextbet = previousbet * 2
   end
end   

    For some reason the withdraw function call is not correct.  But the really bad part is nextbet in the win path is not updated.  I got lucky on this and won a little more then expected, but it could have gone the other way and I would have lost a lot. 

I loaded this into b9 and get an "invalid call to function arguments" and betting stops.

My code is a little more involved then this, so it took a bit to narrow this down.         

   Another question, does withdraw work on PRC.  I think you answered this a little back so I will check. 
I tried withdraw("addy".variable)
          withdraw('addy',variable)
          withdraw(variable,variable)
          withdraw variable,constant)

Nothing seemed to work. 

                     Thanks
684  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 10, 2015, 02:20:01 PM
  The new build seems to be losing a lot of responses for JD.  I hang at least every 30 mins.  Sometimes much sooner.  B9 ran for over 48 hours without a problem.  I can see the results of the roll on JD, but it's not showing in the bot.  A few times it was because of tips. but not the majority of the time.   

The lost responses might not be a bot problem.  I started up the hung bot tonight and within 5 mins it hung again.  Restart hung again, 3 bets hung.  I switched back to B9 and it hung after  5 mins.   It's running now, but for how long I don't know.  I was almost tempted to break out wire shark and run a sniffer to see what the network traffic looked like.  Almost.....   Smiley

The new build really moves fast on the bets.  Load and open working great.

Problems:  Balance is negative when it's really over 21.42  or something close to that. 

The program gets screwed up when you switch to advanced mode and back to programmer mode.
   It's somehow picking up the bet from the advanced mode.  Maybe even the chance.  Things were flying so fast I didn't have time to
see what was really going on, I needed to stop it before I was broke. 

   
Annoyances:  Screen scroll sometimes flashes back to the first lines in the console.   It's almost like your writing to the console so fast when it tries to refresh is moves back to the beginning of it's data for a brief time.  It's only less then a second, but if you don't realize what is happening you can think something is very wrong...     

   
   Still looking for the result being returned.  Haven't looked very hard, but didn't see anything new in the onscreen help stuff. 

I'll let you know if I see anything else in the programmer area...    And thanks again for a great bot... 


If it hung on build9 as well, it probably was due to something else, But I'll take a look never the less. Wireshark isn't going to do much, it's all https so you won't be able to sniff anything useful from the packets.

Is the balance only negative in LUA or in the whole bot?

Yes when you switch from programmer mode to advanced mode while running, the betting will immediately switch to the settings in advanced mode. Will add something to make the bot stop betting, or show a warning when switching between modes.

The console flashes because when it reaches 500 lines, I remove the top 50. When I do this, it flashes a bit. Will see If I can somehow do that a bit smoother.

You'll see a new variable in the box at the top called lastBet, of type Bet. This is an object with all of the latest bets' information. Here's a very very badly drawn UML of the class:


you're probably looking for lastBet.Roll



   I'm guessing the hangs are a JD problem.  I ran the b10 version against PRC and it ran for several hours with no hangs.  JD is still hanging up, but not as often now.  maybe once an hour or so.  And now it could be due to tipping. 

    The balance is only neg in LUA.  Is the field to small? 

I think stopping the bot when switching modes would be best.  If you pause the betting when you show the warning that could work too. 

The console flash is more of an annoyance then anything.   

   I'll look into the last bet stuff.  Very useful I think.

A few other things.  The stat window doesn't have a way to close it from the window.  You have to close it from the windows task bar. 

    Also, I'm not sure I know how to explain this one.  When you logon it acts a little funky.  I was trying to logon to PRC but the bot was pointing at JD, the logon hung for awhile, and then popped up a window, but the window was hidden, while hidden the bot main body is unresponsive, so it looked like it hung.  Once I found the window and clicked ok everything was fine.  Changed the site, and away I went.  So I guess the real problem was the login failed pop-up was not brought to the foreground.

      And as always, thanks for the great bot.   

           
685  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 09, 2015, 11:04:37 PM
  The new build seems to be losing a lot of responses for JD.  I hang at least every 30 mins.  Sometimes much sooner.  B9 ran for over 48 hours without a problem.  I can see the results of the roll on JD, but it's not showing in the bot.  A few times it was because of tips. but not the majority of the time.    

The lost responses might not be a bot problem.  I started up the hung bot tonight and within 5 mins it hung again.  Restart hung again, 3 bets hung.  I switched back to B9 and it hung after  5 mins.   It's running now, but for how long I don't know.  I was almost tempted to break out wire shark and run a sniffer to see what the network traffic looked like.  Almost.....   Smiley

The new build really moves fast on the bets.  Load and open working great.

Problems:  Balance is negative when it's really over 21.42  or something close to that.  

The program gets screwed up when you switch to advanced mode and back to programmer mode.
   It's somehow picking up the bet from the advanced mode.  Maybe even the chance.  Things were flying so fast I didn't have time to
see what was really going on, I needed to stop it before I was broke.  

  
Annoyances:  Screen scroll sometimes flashes back to the first lines in the console.   It's almost like your writing to the console so fast when it tries to refresh is moves back to the beginning of it's data for a brief time.  It's only less then a second, but if you don't realize what is happening you can think something is very wrong...    

    
   Still looking for the result being returned.  Haven't looked very hard, but didn't see anything new in the onscreen help stuff.  

I'll let you know if I see anything else in the programmer area...    And thanks again for a great bot...  
686  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 09, 2015, 04:05:32 PM

    A couple more things to add to your list.  Chance doesn't seem to work, or at least I can't seem to make it work.  Also current streak is only good for a current WIN streak.  it's always zero on the lose side.  Thats not a big deal as it's easy enough to code around if it's more then something simple to fix. 

   Also sometimes, before dobet() is executed balance is not valid.  IE it's a nil value.  I know my balance isn't much but it's not nil... Smiley  I think this is the first time I start the bot, once it's primed it's fine. 

   got your JD ID, so once I get a better balance I'll send you a tip.  Or if I can get a good strategy going  I'll put it in the code. 
 
          Thanks again... 
   

I know of the chance and the balance thing. Got that sorted already for the next build. Did not know about the losing streak thing. Thanks for pointing that out.

    Seuntjie,

    Another problem with the balance.  If your balance is over 21.48 it becomes negative.    Tipping from the code, seems to be working fine...   Smiley  I played around with the resetseed, but I don't really know how to tell if it worked or not.  I believe I should have seen the nonce change, but didn't notice it.  

    All in all I'm really liking the programmer mode.  I can use the balance to place bets to maximize my winnings (or loses).  I'm using the math.random function built into LUA to select hi/lo bets and also when to change up bets.  That keeps my bet patterns random too.    

    Can't wait to test out the next build.  Thanks for all of your hard work....  
687  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 07, 2015, 03:47:12 AM

     Seuntjie,

    The programmer mode is the bomb...  It is so easy to try all kinds of new losing systems...  Cheesy  A few observations. 

 Did you mention returning the results of the roll....  Not just win or lose but the actual result.  I believe that was the only thing I wanted to use but it was not available. 

Man, once you get the hang of this, there is very little you can't do. 

  Also the invest/withdraw function.  Is that just for JD.  I know the invest and tip work on JD.  ( I probably drove Doog crazy with the invest function... Smiley ). 

You should set up the tip function with a default userid of you own.  Just an easy way to send you a tip...   When I'm rolling well I aways mean to send you a tip, but then I lose it all and can't...


   I don't know if it's something about my screen settings, but the programmer panels are just a little too big.  I have to scroll up/down to do almost anything.  go the the code panel, scroll down change the code, scroll back up, select console panel, scroll back down to enter a command.  rinse/ repeat.... 

Also when I get a script running I have to shrink the chart by about 3 pixels to get the full width on the console. 


Lua is soooo easy.  Almost like BASIC but without the line numbers.  I still have a hard time making changes to the code, and then just running it.  I always want to hit save somewhere... 

   All in all way to go.  I don't know if there is enough interest but may having a sub topic for using the programmer mode.  Examples, and help with doing various things. 

 


 
 


Hi, Thanks for the response. I haven't had a lot of people using the programmer mode so it's still very buggy and needs some new features. I've been working on bettering it and the next build (which could possibly finally be a stable release) will have a much better programmer mode.

Currently only the win/loss is returned as you noted, but I already implemented returning an object of a bet result that will have more details on the roll available for the user to use, such as the client seed, roll number, lucky number, chance, profit, etc etc. The invest function works at JD, PRC and safedice. the tip function works at JD, PRC and PD. Build 9 has a donate button that details to which account to tip depending on which site you're on.

I know of the scroll bar thing. It shows the bottom scroll bar because the side scroll bar is visible and it shows the side scroll bar because the bottom scroll bar is visible. I'll make a few adjustments there and get it to look a bit better.


I'm planning on adding a save button so the code is saved to a file, but in the mean time you can work in a text file and use only the following in the code box. Just make sure you have a dobet() method/function defined in the file as that method is called to determine the next bet.

Remove everything from the code box and add only
Code:
dofile("textfilename.txt")

Now when you start the bot, the code in your text file will be executed and the method/function will be loaded from the file. All declarations and assignments done outside of a method in the file will be executed once and all methods will be loaded when start() is called.


    A couple more things to add to your list.  Chance doesn't seem to work, or at least I can't seem to make it work.  Also current streak is only good for a current WIN streak.  it's always zero on the lose side.  Thats not a big deal as it's easy enough to code around if it's more then something simple to fix. 

   Also sometimes, before dobet() is executed balance is not valid.  IE it's a nil value.  I know my balance isn't much but it's not nil... Smiley  I think this is the first time I start the bot, once it's primed it's fine. 

   got your JD ID, so once I get a better balance I'll send you a tip.  Or if I can get a good strategy going  I'll put it in the code. 
 
          Thanks again... 
   
688  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 05, 2015, 03:08:27 PM

     Seuntjie,

    The programmer mode is the bomb...  It is so easy to try all kinds of new losing systems...  Cheesy  A few observations. 

 Did you mention returning the results of the roll....  Not just win or lose but the actual result.  I believe that was the only thing I wanted to use but it was not available. 

Man, once you get the hang of this, there is very little you can't do. 

  Also the invest/withdraw function.  Is that just for JD.  I know the invest and tip work on JD.  ( I probably drove Doog crazy with the invest function... Smiley ). 

You should set up the tip function with a default userid of you own.  Just an easy way to send you a tip...   When I'm rolling well I aways mean to send you a tip, but then I lose it all and can't...


   I don't know if it's something about my screen settings, but the programmer panels are just a little too big.  I have to scroll up/down to do almost anything.  go the the code panel, scroll down change the code, scroll back up, select console panel, scroll back down to enter a command.  rinse/ repeat.... 

Also when I get a script running I have to shrink the chart by about 3 pixels to get the full width on the console. 


Lua is soooo easy.  Almost like BASIC but without the line numbers.  I still have a hard time making changes to the code, and then just running it.  I always want to hit save somewhere... 

   All in all way to go.  I don't know if there is enough interest but may having a sub topic for using the programmer mode.  Examples, and help with doing various things. 

 


 
 
689  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 30, 2015, 02:05:42 PM
Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...


Usually there's a details button, If you open that, it should show the stack trace. I'd need to see the whole stack trace if possible.

  I just get a dice-bot has stopped working correctly.  The only option is to close the program.  This is running under windows 7 if that matters.  Let me know if there is any kind of dump I can take when it happens again. 

   And while I've got your ear.  Is there a way to print text and variables in the same line?  I've just coded 2 prints instead.  Figured I'd ask...

I was able to pull this up in windows event viewer.

Faulting application name: DiceBot.exe, version: 0.0.7.0, time stamp: 0x550c0f6f
Faulting module name: KERNELBASE.dll, version: 6.1.7601.18229, time stamp: 0x51fb1116
Exception code: 0xe0434352
Fault offset: 0x0000c41f
Faulting process id: 0x29e8
Faulting application start time: 0x01d068b40fc91db4
Faulting application path: C:\Users\user1\Bitcoin\Bots\dicebot b9\DiceBot-v3 Alpha\DiceBot.exe
Faulting module path: C:\windows\syswow64\KERNELBASE.dll
Report Id: 74ce37a2-d4ab-11e4-ad9b-40f02f074de8

Working back this is the prior error.

Application: DiceBot.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AggregateException
Stack:
   at System.Threading.Tasks.TaskExceptionHolder.Finalize()



There should be more after    at System.Threading.Tasks.TaskExceptionHolder.Finalize()

That's the part I really need


   Unfortunately that was all I get.    I was getting that error, running on my laptop which is using a VPN.  It would fail in less then an hour.  I switched over to my desktop, and now it's been running for several days without a problem.  I was hoping the desktop would give more info if it failed, but it appears to be something on my laptop.  Thanks for looking..
690  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Pearl on: March 27, 2015, 07:24:06 PM
Cross-posted over in the mining sub-forum.

If anyone has personal experience with staking CLAM and how it is similar to Proof-Of-Work (compared to other Proof-Of-Stake alternatives), your opinions and experiences would likely be helpful:

Hi, solo staker here. [...]

If you need anymore info, let me know.

I was wondering if you knew anything about this deposit to Just-Dice, Mr. Solo Staker. Wink

Which makes me wonder... what happens if people put illegal or copyrighted text into the blockchain's CLAMspeech? It's not like anyone can take it down to comply with a cease and desist order. I remember a few years ago someone put a bunch of links to very dubious sites in the Bitcoin blockchain, but I've not heard anything about that since. Here's an article, with a pretty inaccurate headline: "If you own Bitcoin, you also own links to child porn". (Inaccurate since you can own Bitcoin simply by holding a private key on a piece of paper. You don't need a copy of the blockchain to own Bitcoin).

   Doog,  You need to get another hobby.  I guess JD, Deb and all the bunny's don't take up enough time.  Your still out reading the block chain....  Cheesy
691  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 06:10:01 PM
Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...


Usually there's a details button, If you open that, it should show the stack trace. I'd need to see the whole stack trace if possible.

  I just get a dice-bot has stopped working correctly.  The only option is to close the program.  This is running under windows 7 if that matters.  Let me know if there is any kind of dump I can take when it happens again. 

   And while I've got your ear.  Is there a way to print text and variables in the same line?  I've just coded 2 prints instead.  Figured I'd ask...

I was able to pull this up in windows event viewer.

Faulting application name: DiceBot.exe, version: 0.0.7.0, time stamp: 0x550c0f6f
Faulting module name: KERNELBASE.dll, version: 6.1.7601.18229, time stamp: 0x51fb1116
Exception code: 0xe0434352
Fault offset: 0x0000c41f
Faulting process id: 0x29e8
Faulting application start time: 0x01d068b40fc91db4
Faulting application path: C:\Users\user1\Bitcoin\Bots\dicebot b9\DiceBot-v3 Alpha\DiceBot.exe
Faulting module path: C:\windows\syswow64\KERNELBASE.dll
Report Id: 74ce37a2-d4ab-11e4-ad9b-40f02f074de8

Working back this is the prior error.

Application: DiceBot.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AggregateException
Stack:
   at System.Threading.Tasks.TaskExceptionHolder.Finalize()
692  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 05:31:58 PM
Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...


Usually there's a details button, If you open that, it should show the stack trace. I'd need to see the whole stack trace if possible.

  I just get a dice-bot has stopped working correctly.  The only option is to close the program.  This is running under windows 7 if that matters.  Let me know if there is any kind of dump I can take when it happens again. 

   And while I've got your ear.  Is there a way to print text and variables in the same line?  I've just coded 2 prints instead.  Figured I'd ask...
693  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 04:11:37 PM
 Seuntjie,

   Played around with the programmer mode.  How do you save the code?  I was hoping it was automatic, but after a crash and losing my code, I find it is not.  
I can't seem to cut/paste in the code box either...  Can I put it into a file and have it automatically loaded?  

EDIT: ctrl-c and ctrl-v work, so I'm able to code it up in note pad and copy it over...

As of yet, I haven't added a way of saving the code automatically or loading code into the bot. Been meaning to do so, just haven't gotten around to it.

for now, you can use the dofile() method to load from a file.

To do this, just delete the dobet function from the code box (would be best if it's empty), then execute dofile("your script name.txt") from the console. If you start the bot now, the loaded method will be executed. Alternatively you can replace the code in the code box with dofile and just start the bot normally.

Note: It's important that the dobet() function is NOT in the code box when you start betting. when executing start(), the code in the code box is executed. If dobet is present, it will override the one in your file.


  A few questions came to mind while playing around.  How is the first roll's input determined?  IE the bet amount and hi/low?  I added a few variable inits before the dobet() function.  They seem to get set correctly, but not before the first roll..  

At the moment, the first roll is determined by the base bet text box in the basic and advanced modes, same for chance and it defaults to betting high. In build 9 there is a bug that prevents changing these values from outside the dobet function, but I've been working on improving it and the next version will fix these issues.

Some of these issues has already been fixed and the code has been committed to github if you want to compile the bot yourself and test it out.

I don't know how many people you have using the programmer mode, but a cool addition would be to have a few screen areas defined for input and output.  This would allow changing parms from the panel, and displaying some output related to the run.  

The console is there to allow input and output. you can declare and set variables using the console, as well as get their values using the print function. you can also use the print function from inside your code to print applicable info to the console during the run. The stats windows and some other hidden features will be view-able while in the programmer mode in the next build (these updates has already been committed to github).

The console is pretty much like a javascript console. You can execute just about any code from it.

I coded up the mutawa function with a zig/zag twist.  It was working great till the bot crashed and I lost it all.  Not a huge deal about 40 lines of code,  and I remember most of it...    
Sorry to hear you lost the code. I know it's an inconvenience and I will make it save the settings automatically soon.
Would be great if you could send the error details from when the bot crashed though, Hard for me to fix errors if i don't know what they are Smiley




Edit: github repo: https://github.com/seuntie900/DiceBot

Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...
694  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 02:13:02 PM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.

  Seuntjie,

   Played around with the programmer mode.  How do you save the code?  I was hoping it was automatic, but after a crash and losing my code, I find it is not.  
I can't seem to cut/paste in the code box either...  Can I put it into a file and have it automatically loaded?  

EDIT: ctrl-c and ctrl-v work, so I'm able to code it up in note pad and copy it over...


   A few questions came to mind while playing around.  How is the first roll's input determined?  IE the bet amount and hi/low?  I added a few variable inits before the dobet() function.  They seem to get set correctly, but not before the first roll..  

I don't know how many people you have using the programmer mode, but a cool addition would be to have a few screen areas defined for input and output.  This would allow changing parms from the panel, and displaying some output related to the run.  

I coded up the mutawa function with a zig/zag twist.  It was working great till the bot crashed and I lost it all.  Not a huge deal about 40 lines of code,  and I remember most of it...    
695  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Pearl on: March 27, 2015, 03:59:31 AM
I don't know if anyone noticed the CLAM difficulty dropped through the floor over the last couple of hours.

That was my fault. I was debugging a hang-up in the Just-Dice wallet, left the wallet running in a terminal ssh'ed into a remote server from my laptop, and left the laptop while I went outside for a break.

The laptop suspended itself, causing the clamd on the remote server to hang up and stop staking.

Here are charts of the network difficulty:





It's pretty much back to normal now - but for an hour or so it was much easier to stake than normal.


    Hahaha, speak for your self.  I got no stakes from this.  Even thought I have several hundred outputs ready to stake.  The last time this happened the block chain actually started to slow down.  This was the multiple little withdrawal issue.  At that time I think I noticed almost 30 mins between a few blocks. 
696  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold on: March 27, 2015, 03:56:26 AM
im just angry investor asking whats going on.

make special blockexplorer for what, give pob 2 days old coins,,, later only can pay pob to all healthy holders each 2 months and less than 5%

10 btc invested in exchange without volume ..

MMXIV, 10k, PAYCOIN, EMC2 Coin, ABC2, Adsactly Coin -- im watching all big looses in all coins and not see one trader protecting asset inversion

shares and other assets not going to talk about but problably have same destiny



and all money throw away there can be in qbk, making grow the price and atracting new investors

Thats what im talking about not panicking just being real.


I currently hold some coins in wallet permanently, and trade others on Poloniex. IS this policy of 2 day POB staying as is? I'm assuming it's staying as is.
Because otherwise I would probably pull the coins and trade them and then bring them back before the cut off date. If this policy is going to change then I will leave them in the wallet and trade a smaller amount on Poloniex as I'm doing now.


I should hope it does change.  I think Q-woman feels bad for all of the new comers and feels the need to make the transition in to bagholder status easier.    Personally I feel The gifts in Apr, should be based on the balance in Feb.  You should have to hold your coins over the earnings period. 

And again personally I think any funds should be used to invest for earnings.  Nothing should be used to shore up the price or attract new investors.  If the earnings are solid the prices and investors will follow.  This is a gift giving coin and not a pump and dump for the day traders. 

   I won't get into coin prices and selections in a public forum, but lets just say I agree with some of what was said... 
697  Economy / Investor-based games / Re: btc-arbs.com - Update: dead HYIP, Refund progress: BTC-arbs still doing refunds on: March 27, 2015, 02:13:04 AM
Many refunds today. Sending in 5 minutes.

Man I really wish i've gotten in on this from the beginning. It looks legit. But at the beginning it looked like a total scam and I decided to stay out.
Same, I wouldve only went in with a small amount, so in the end I woulda got a refund.

   If you want to give me .5 BTC I'll give you back .02 every 3-6 months for 25 payments or up to 12.5 years. 

He's not paying any interest on the BTC he collected up front.  This was a 0% interest loan. 
698  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HYP] HyperStake | 750% PoS | Secure | MultiSend | liteStake | Coin Control on: March 21, 2015, 01:42:40 PM
A funny and ironic quote from the Snowballs thread today (soon to be changing name to Sucksballs after its 45th fork and hitting 1sat on the exchanges  Wink

Also, HYP is shit and their 'dev' team is even shittier


The irony...  Grin

   That is funny.  They guy has no clue how his own code works, then trys to pass it off as, that's what I was planning.  Had the blockchain stall for 8-9 hours or longer, and just say oh well, it'll come back eventually.  And constantly says he doesn't want to add coin control to his coins, as an inflation hedge, when the fact is he doesn't know how to do it.  All he does it tweak the images, and the stake time/percentage, and declares he's the next great developer...   I have to bite my tongue every time I read that forum...
699  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HYP] HyperStake | 750% PoS | Secure | MultiSend | liteStake | Coin Control on: March 21, 2015, 01:37:39 PM
so block of 8k are useless ?

better to have 2k block ?

That is up to you on which way you want to go. Personally I have all my blocks at 15k now so they stake in about 15-19 days max. They always max out at 1k though. You can have smaller blocks but they will not stake quickly but might get you closer to the 1k mark without going over. My bet is on weight and minimal time for staking. Others have a different strategy and that is good since we are here to learn what works best. Hope this helps!

I think your going to find the larger blocks are the winners.  I had several smaller blocks (1-2K) that were over 60 days old.  I finally bit the bullet and combined them.  Now I have a 2.5 and 3K blocks at 54 and 55 days. 

   Out of the 26 blocks I have 12 are > 30 days, and 24 are > 8.8.  The blocks are about 3-5K in size. 
3 months ago I was staking about once a day, maybe every other day.
now it's down to 1-3 times per week. 
   
   So coin inflation for myself, seems under control.  Now we just need a few uses for the coin and we'll be on our way... 

It is a fun coins thou...
700  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HYP] HyperStake | 750% PoS | Secure | MultiSend | liteStake | Coin Control on: March 20, 2015, 03:02:30 AM
   Definitely tough to stake.  But that is actually a good thing for inflation control. 
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [35] 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!