Bitcoin Forum
May 13, 2024, 01:34:47 PM *
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 »
201  Economy / Services / Re: [OPEN] ChipMixer Signature Campaign | Accepting Sr. Member+ on: June 10, 2017, 09:03:07 AM
I am currently in the bitmixer campaign but willing to give this a shot if accepted. Will update sig as required. Thanks!

Username: jorneyflair
Post Count: 882
BTC Address: 1N3R537gHRSkoaucWUkm4VJd1g2xW4SoKY

Accepted. Please send me a PM once you change your signature. Thanks!

Hello!

I would like to join this signature campaign if you still got any open slots. If you accept then I will add the signature code.

Thanks

Accepted. Please send me a PM once you change your signature. Thanks!



All other applicants are denied.

Would u mind to pm me the reason?
I just started being active again so the post amount of the last months is not representative and your campaign has no min amount therefore I dont really know why I am denied.
202  Economy / Gambling / Re: Primedice | Most Popular, Oldest & Trusted | Huge Community | Free BTC | 🎂 on: June 09, 2017, 08:00:36 PM
Faucets have been decreased to just 722 satoshi from 3600 satoshi. Hope it will help out in controlling facuet farmers and we soon will be able get claims like before soon.

The only reason for this low satoshi price from faucets are increase in bitcoins price. Bitcoins price has moved from 1000$ to almost 3000$in a period of six months, making it difficult for faucets to give free sat.

Gladly Duckdice raised the faucets yesterday.  Grin

At the bonus tab:

Bitcoin Faucet
Get 1000 Satoshis to try the game for free!
Just click "Faucet", solve the captcha and roll the dice.


But I only get 250 sat. I think they lowered their faucet as well Cheesy


And thanks to Primedice support for recovering my account  Smiley
The support chat is awesome but I actually didnt notice the icon as that kind of feature in the first place :S
203  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 09, 2017, 05:25:40 PM
-snip-

try formatting your code the right way (I edited your code in your post) this might help reading your own code.

I this the following programm is what you are looking for

Code:
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet

startBalance = balance
lowRoll = false
recovering = false

function dobet()
if (win) then
if (balance >= startBalance) then
chance = 90
nextbet = basebet

startBalance = balance
recovering = false
else
if (recovering) then
nextbet = balance
else
chance = 90
nextbet = basebet
end
end
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8

recovering = true
end
end
end

u need a variable to save the state for your consecutive 98% bets, I used the bool recovering.
and u might wanne rebase your startBalance if you are winning (so maybe after the statement 'recovering = false'

Okay I got the code working but there was an error which I have shown on the code with red line.But the problem is I wanted the 98% bet to be placed with an amount equal to updated balance after each of the 98% bets.

for eg: if the balance after first 98% bet is 0.0001 then next 98% bet is placed with 0.0001 and the next bet with the updated balance and so on till loss is recovered


I edited the code in my reply. You simply need to adjust the nextbet to the balance in case u won and u still need to recover.

And sorry for the || (or) Cheesy I am mainly implementing in java and didnt run any of these codes for testing.




Th@nk you B4RF Your code works as it should.Anyway I still had an issue with the code since you forgot a 'then' statement in the editted section(I have marked it in the code above) .But thats OK..

But I still have a problem the 98% chance bet is placed consecutively only till the balance is greater than the initial balance when starting a session and not takes account of the profits made in between.I want  the 98% bet to stop only when the balance is greater than the maxbalance(balance with intermediate profits also included).


for eg: if I start from faucet of 750 sats and  I make profits and reaches a balance 770 sats.Suppose I haven't had a situation to place 98% chance bets till balance is 770.Then lately I have reaches a stage to put 98% chance bets.At this time the bets are placed consecutively till the balance>750 and not 770. I want the 98% bet to stop when balance is greater than 770.

Ye I didnt run the code myself so mistakes are common but nice that u have no problems finding my mistakes Smiley

But in addition I have already mentioned how u can add that behaviour u asked for:


u need a variable to save the state for your consecutive 98% bets, I used the bool recovering.
and u might wanne rebase your startBalance if you are winning (so maybe after the statement 'recovering = false'

I changed the code above once again :S
204  Economy / Gambling / Re: Primedice | Most Popular, Oldest & Trusted | Huge Community | Free BTC | 🎂 on: June 09, 2017, 05:11:47 PM
Is there a way to recover my account without knowing the email?

My 2FA is still enabled and working but I forgot my password. And I can't really remember setting my mail address in the account.

Additionally it's not possible to click the support button without logging in Cheesy
205  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 09, 2017, 08:36:22 AM
-snip-

try formatting your code the right way (I edited your code in your post) this might help reading your own code.

I this the following programm is what you are looking for

Code:
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet

startBalance = balance
lowRoll = false
recovering = false

function dobet()
if (win) then
if (balance >= startBalance) then         -------------------------------edit starts here
chance = 90
nextbet = basebet

recovering = false
else
if (recovering)
nextbet = balance
else
chance = 90
nextbet = basebet
end
end                                                ------------------------------end of edit
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8

recovering = true
end
end
end

u need a variable to save the state for your consecutive 98% bets, I used the bool recovering.
and u might wanne rebase your startBalance if you are winning (so maybe after the statement 'recovering = false'

Okay I got the code working but there was an error which I have shown on the code with red line.But the problem is I wanted the 98% bet to be placed with an amount equal to updated balance after each of the 98% bets.

for eg: if the balance after first 98% bet is 0.0001 then next 98% bet is placed with 0.0001 and the next bet with the updated balance and so on till loss is recovered


I edited the code in my reply. You simply need to adjust the nextbet to the balance in case u won and u still need to recover.

And sorry for the || (or) Cheesy I am mainly implementing in java and didnt run any of these codes for testing.
206  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 09, 2017, 06:41:12 AM
I wanna make a program which makes bets like this:
                     There is a basebet equal to 0.00000001. This basebet is placed with chance of 90% and bethigh=true.It is rolled till a number less than 9.99 is rolled.When the number less than 9.99 is rolled ,then the next bet is placed with same chance and same condition at an  amount equal to (1/8) th of balance.If that bet is a win then the bet is back to base bet and continue the cycle and if the bet was a loss ,then the nextbet is placed with an amount equal to remaining balance and chance 98% with bethigh=true.This bet is placed consecutively till the balance reaches an amount greater than or equal to initial balance.



I have wrote part of the code myself and it is pretty well working:

chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet

function dobet()
   if (win) then
      chance = 90
      nextbet = basebet

   else
      if currentstreak==-2 then
         chance=98
         nextbet=balance

      else
         if (!win) then
            chance =90                                          <- dead code: else statement from if(win) see above and then if(!win) - both can never be the case
            nextbet = balance/2

         else
            chance=90
            nextbet=basebet
         end
      end
   end
end





BUT IN THIS CODE THE 98% chance bet is placed only once ,but I want to place the 98 % chance bets consecutively until the current balance becomes greater than or equal to the balance at each stages i.e,balance covering  the losses.CAn you help me with that..........
                


try formatting your code the right way (I edited your code in your post) this might help reading your own code.

I this the following programm is what you are looking for

Code:
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet

startBalance = balance
lowRoll = false
recovering = false

function dobet()
if (win) then
if (!recovering || (balance >= startBalance)) then
chance = 90
nextbet = basebet

recovering = false
end
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8

recovering = true
end
end
end

u need a variable to save the state for your consecutive 98% bets, I used the bool recovering.
and u might wanne rebase your startBalance if you are winning (so maybe after the statement 'recovering = false'
207  Economy / Service Announcements / Re: [ANN] ChipMixer - mixing reinvented on: June 09, 2017, 06:08:20 AM
What are the benefits of mixing your coins when you are not into illegal stuff Cheesy

I see the benefit when someone got btc through some shady transactions or even stole them but when I am simply doing my everdays transactions why should I be incentivised to use this?
208  Economy / Service Discussion / Re: Overview of Bitcointalk Signature-Ad Campaigns [Last update: 07-Jun-2017] on: June 09, 2017, 06:02:10 AM
I cant recommend the campaign from Bitmixer.io

I just started being active on bitcointalk again after quite some time and therefore took a campaign with no min posts since I dont really know how much time I am able to invest in bitcoin again.

And I got banned in the very first week from this campaign although I didnt break any rules. I simply got the response that I should come back after being active for some time.

Therefore I think there is actually a min post amount. And I didnt even get a payment for that week which is not that bad since its not much but I didnt break any rules so a payment would be fair I guess.
209  Economy / Services / Re: [OPEN] ChipMixer Signature Campaign | Accepting Sr. Member+ on: June 09, 2017, 05:00:14 AM
Username: B4RF
Post Count: 602
BTC Address: 1B4RF3h4nnj2yTAnc2e8hAkaieb65LAzBF

Thanks
210  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 08, 2017, 09:13:52 PM
WOW! bro u are such a kinded hearth and generous person i will really appricaiate it sir ,,,, here is my currrent status of my script below  (and yes i still want it to perform the same process i said b4)


-snip-

Code:
wagered=0
chance0=28.08
chance1=90.4  --I hope this are the varies and value u asked me to set b4 dobet function
chance2=94     --I hope this are the varies and value u asked me to set b4 dobet function
chance3=95     --I hope this are the varies and value u asked me to set b4 dobet function
baseBet=0.00000001 -- should the baseBet be up here?
baseBet1=0.00030000   --I hope this are the varies and value u asked me to set b4 dobet function
baseBet2=0.00060000   --I hope this are the varies and value u asked me to set b4 dobet function
baseBet3=0.00100000   --I hope this are the varies and value u asked me to set b4 dobet function
profitterget=0.00100000

nextbet=baseBet

function dobet()
wagered=wagered+previousbet
chance = chance0

if win then
nextbet=baseBet
else
nextbet=previousbet*2
end

if currentstreak==-10 then
chance=chance1
nextbet=baseBet1
end
if currentstreak==-11 then
chance=chance2
nextbet=baseBet2
end
if currentstreak==-12 then
chance=chance3
nextbet=baseBet3
end
if currentstreak<-12 then
chance=chance0
nextbet=baseBet
end

if (balance) >= profittarget then
print(balance)
print("TARGET ACHIEVED!!!")
stop();
end
end

Sry for the late reply...I didnt test it since I had not much time and I removed the betHigh/betLow bs since that makes no sense Cheesy

@HCP you are actually right ... but I already sayd I will look into it and maybe it will help him to have one functioning code in his hands xD
211  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 08, 2017, 06:27:00 AM
-snip-

bro hv done everything but still doing the same

I can write you the code when I am back at home from work but is this still the behaviour you are looking for?

here is the full explaination sir (thank u in advanced)

let say i bet
0.00000002 and i win,  i want it to go back to the basebet and bet 0.00000002
But if i bet 0.00000002 and loss, then i want it to multiply *2 of my loss so my next bet will be 0.00000004
then if i loss again i want it to still double up the nextbet to 0.00000008 till i win then i want it to go back to the basebet thats if i win (i only want 10 loss in a row b4 changing to the 90% chance)

EXAMPLE

it will look like this when the lossing occurs
0.00000002
0.00000004
0.00000008
0.00000016
0.00000032
0.00000064
0.00000128
0.00000256
0.00000512
0.00001024
 till it reach 10losses but now lets assum its has reach 10losses

so when i get 10 losses i want the bet to change to 0.0003 with a 90%chance so if i dont win it i want it to change to 0.0006bet with 94%chance so if i dont win again i want the third bet to change to 0.001btc with a 95%chance
so if i in anycase win or loss THIS 90% 94% 95% CHANCES  i want it to go back to base bet and restart again


I think there might be just a missing variable change in your code. might be helpfull if you can post your current state.
212  Economy / Games and rounds / Re: [Primedice.com] 13 billion bets - Free 0.001 BTC on: September 23, 2016, 10:13:14 AM
username: BTChris

Once again a giveaway  Smiley  always nice news when stunna is getting active here  Cheesy
213  Economy / Services / Re: :: OneCrypto Signature Campaign - The Best Crypto Forum! 0.001 Per Post! :: on: September 13, 2016, 11:16:56 PM
...
Minimum number of posts: 5
...
Users must post in more than 5 different sections.
...

I don't know how someone can do 5 posts in more than 5 different sections but maybe I am not that experienced in posting...
214  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN][EXCHANGE] Poloniex - Crypto Exchange with BTC/NXT on: September 10, 2016, 01:49:24 PM
Anyone do the address verification? How does it work? seems to not work for me

It didnt work for me either.

Dont know where's the problem but maybe it depends on your location.

Anyone else got it to work?
215  Economy / Services / Re: Bitsler Signature & Avatar Campaign (Earn up to .05/week)Sr member-Staff(FULL) on: September 10, 2016, 12:02:42 PM
I would like to join.

Btctalk Username: B4RF
Bitsler name: BotB4RF
Post count: 574 (including this one)
Rank: Hero Member
Bitsler Deposit address: 3EvjwCLUUG68C8vMADPECEMAFAXjXjHqCS

Post count: 596
216  Economy / Exchanges / Re: BIT-X.com | Exchange BTC, LTC, USD, EUR, GBP & Rub | Bitcoin Debit Card! on: September 08, 2016, 11:20:03 AM
Is there a minimum fee for withdraws?

Because 0.001 BTC fee for a 0.0194 BTC withdraw seems pretty high right?

Yes , It seems like minimum fee is 0.001 BTC, and the maximum 1 BTC while withdrawals start from 0.0001 BTC , you can see more information's here about the fees (those are deposit/withdrawal fees and has nothing to do with the Visa card btw) : https://coinsbank.com/fees


This must have been changed because with bit-x there was a much lower minimum fee.

And a withdrawl of 0.0001 with a 0.001 fee makes really no sense at all  Cheesy
217  Economy / Exchanges / Re: BIT-X.com | Exchange BTC, LTC, USD, EUR, GBP & Rub | Bitcoin Debit Card! on: September 08, 2016, 10:46:31 AM
Is there a minimum fee for withdraws?

Because 0.001 BTC fee for a 0.0194 BTC withdraw seems pretty high right?
218  Other / Archival / Re: Updated Overview of Bitcointalk Signature-Ad Campaigns on: September 07, 2016, 08:44:31 AM
That escalated quickly...

Omicron is already full.

Seems like there are many users just waiting in this thread for some new signature campaigns.
219  Economy / Gambling / Re: Betbit.co| Dice game | 0.1% house edge | Referral program | Bonuses that shock! on: September 06, 2016, 06:52:11 PM
For the referral program,what is stopping people form putting in 0.05 btc, withdrawing the bitcoins, putting them back in, etc.?

The site is rigged that's why they don't care how much of an advantage players get through referrals or waggering...

Maybe try this method and show the results here Cheesy

220  Economy / Services / Re: [BIT-X.com] [CoinsBank.com] Earn Bitcoins by Posting | Signature Campaign on: September 05, 2016, 12:47:20 AM
Well Not to complain but I have yet to be paid last payment

In my case it would be ¼ of a month or .075 btc

plus what ever bonus  this campaign has been good to me.  I was paid about 4.2 btc in 14 months time.

@ marcotheminer   


You can keep the final 0.075 btc and the bonus let the other guys get it.

Best regards Phil


ps I will leave signature in place until Sept 8th as a gift to you and coinsbank

Give it to me as I did not get payment for the past month.
My bitcoin address for the campaign in my profile as they know.

You would not have been paid because you have a negative trust but besides that you are not even enrolled in this signature campaign  Roll Eyes
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!