Bitcoin Forum
May 11, 2024, 01:04:34 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 »
1  Local / Italiano (Italian) / Re: POSTEPAY EVOLUTION PROBLEMI SU BITSTAMP/COINBASE ETC... on: May 10, 2018, 10:28:00 PM
adesso rifunziona coinbase
forse la evolution aveva qualche problema
2  Local / Italiano (Italian) / Re: POSTEPAY EVOLUTION PROBLEMI SU BITSTAMP/COINBASE ETC... on: May 10, 2018, 09:34:56 PM
quindi devo contattare le poste e verificare?
3  Local / Italiano (Italian) / POSTEPAY EVOLUTION PROBLEMI SU BITSTAMP/COINBASE ETC... on: May 10, 2018, 05:36:41 PM
salve ragazzi,

oggi ho provato ad acquistare qualcosa su bitstamp e coinbase e in entrambi i casi ho ricevuto un messaggio di errore...

premetto che non ho mai avuto problemi usando la evolution

qualcuno sa cosa è successo???

questo il messaggio di coinbase

https://ibb.co/fnoHqd

4  Bitcoin / Electrum / Re: Electrum BUG - all Bitcoins stolen on: April 28, 2018, 06:55:55 AM
i have this problem too.
i have install electrum 3.0.3 at 26.01.2018
after 2 days i have see a output transaction and all my bitcoin lost.
don't use electrum! shit!
From where you downloaded? Did you checked the PGP signature?

from official site and not 3.0.3 version but 3.0.5
5  Bitcoin / Electrum / Re: Electrum BUG - all Bitcoins stolen on: April 27, 2018, 08:13:15 PM
i have this problem too.
i have install electrum 3.0.3 at 26.01.2018
after 2 days i have see a output transaction and all my bitcoin lost.
don't use electrum! shit!
6  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 20, 2017, 07:52:36 PM
anyone help me?

i need a script can change strategy when profit is ex: 0.00300000

like this:


strategy1  >  if total profit is 0.00300000  go to strategy2


strategy2 >  if total profit is 0.00300000  go to strategy 3


strategy3 > if total profit is 0.00300000  go to strategy 1

anyone help me?
tnx for all




strategy = "stragety1"
total_profit = 0

function dobet()

total_profit += currentprofit

if total_profit >= 0.0003 then
   total_profit = 0
   if strategy == "stratgey1" then
      strategy = "strategy2"
   else
      if strategy == "strategy2" then
         strategy = "strategy3"
      else
         strategy = "strategy1"
      end
   end
end
if strategy == "strategy1" then
   do strategy 1 stuff
else
   if strategy == "stragety2" then
      do 2 stuff
   else
       do 3 stuff
   end
end

end

  Tips are always welcome Smiley
    
      




i try this
tnx for all!
7  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 20, 2017, 05:19:05 PM
anyone help me?

i need a script can change strategy when profit is ex: 0.00300000

like this:


strategy1  >  if total profit is 0.00300000  go to strategy2


strategy2 >  if total profit is 0.00300000  go to strategy 3


strategy3 > if total profit is 0.00300000  go to strategy 1

anyone help me?
tnx for all


8  Local / Italiano (Italian) / Re: Usare il wallet Coinomi per importare le chiavi private e avere Bitcoin Cash on: August 03, 2017, 07:07:48 PM
io ho problemi.
su coinomi quando scansiono il qcode di electrum mi dice non è stato riconosciuto il formato della chiave privata
che fare???
9  Local / Italiano (Italian) / Re: Usare il wallet Coinomi per importare le chiavi private e avere Bitcoin Cash on: August 03, 2017, 06:03:59 PM
qualcuno ha provato è può confermare la buona riuscita della procedura???

grazie!
10  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 30, 2017, 11:18:43 AM
hi all,

i need to auto withdraw when balance is 0.01
please help me

11  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 08, 2017, 01:25:21 PM
hi all,

i need a script like this:

array like this...

chances = {11,12,13}
bets = {1000,2000,3000}
increase = {1.16,1.17,1.18}

but change random when profit is 0.1 btc

anyone help me??
tnx
12  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 02, 2017, 09:31:43 AM
Ok... that sort of clears things up a little bit Smiley

This should give you an idea of how to do it... if at any time you want to reset all the way back... just set count = 1

Code:
chances = {11,12,13}
bets = {1000,2000,3000}
increase = {1.16,1.17,1.18} -- 16%, 17% and 18%

count = 1

... do all your other stuff ...

chance = chances[count]
nextbet = bets[count]

function dobet()

  if (win) then
    ... win stuff ...
    count = count + 1
    if count > #chances then
      count = #chances  -- Don't go over max array size
    chance = chances[count]
    nextbet = bets[count]

  else
    ... loss stuff ...
    chance = chances[count]
    nextbet = previousbet * increase[count]   

  end

  ... whatever else you want ...

end


great! i try this. tnx a lot!
13  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 02, 2017, 08:21:47 AM
Sorry, I don't understand what it is that you're asking for...

what exactly do you mean by nextbet 16%?  Do you mean that the nextbet should be the previousbet increased by 16%? or that it should be 16% of the previous bet?

And you haven't specified if it should occur on win or loss or both?

Also, what are the conditions that it moves from "1 bet" values to "2 bet" values?

Huh



i have 3 arrays...one for chance, one for bet and one for on loose nexbet + %
if win i want change this arrays block like this:

first win :   chance 11.00 - bet 1000 - on loose nextbet + 16%
second win : chance 12.00 - bet 2000 - on loose nextbet + 17%
and more :   chance 13.00 - bet 3000 - on loose nextbet + 18%

but in block because if i use normal arrays all are random so ...chance 11:00 start with bet 2000 and on loose 18%



14  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 01, 2017, 10:10:06 PM
hi all!

i need to make a script with this parameters:

chance array (20.00,21.00,22.00,23.00)

bet array (1000,2000,3000,4000)

nexbet = previousbet + array (16%,17%,18%,19%)


ex:   
1 bet : chance 20,00, bet 1000, nexbet 16% 
2 bet : chance 21,00, bet 2000, nexbet 17%
3 bet:  chance 22,00, bet 3000, nexbet 18%


anyone help me?

tnx 4 all
15  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 08:28:53 AM

You'll have to look this up.  But there is a way to create an array in LUA  it might be something like
betseq = {"Lo","Lo","Hi","Hi","Lo" etc......}
Yep, that is exactly how you create an "array" (in LUA they are "tables")...

And just a FYI, the convention in LUA is to index Arrays from 1... don't start counting at 0 like you would in C or Java etc Wink

hi guy!

i need to set chance from array like this:
chance =  {48,50,52,54}

and when win set chance random from the array

anyone help me?
Firstly, don't call your array "chance"... that is a built in variable that the bot uses to send the chance value to the dicesite Wink

Code:
chanceArray = {48,50,52,54}

if win then
  chance = chanceArray[math.random(#chanceArray)]
end

This will pick a "random" value from the chanceArray... the #chanceArray value is the number of items in the Array... so you can add more values or take some out and the code will still run without generating an "Index Out of Bounds" type error Wink


tnx a lot i try this!
16  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 12:04:35 AM
hi guy!

i need to set chance from array like this:
chance =  {48,50,52,54}

and when win set chance random from the array

anyone help me?
17  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 18, 2017, 07:22:29 PM
hi!

how is possible this???





high 32.99  roll 53.9   i loose???




   Your betting with 32.99% chance.  That means a high bet will win when the roll is greater then 100 - chance.     (100 - 32.99) = 67.01.  You only win when the roll is greater then 67.01.  53.9 is less then 67.01 you lose. 

ops tnx!
18  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 18, 2017, 06:33:34 PM
hi!

how is possible this???





high 32.99  roll 53.9   i loose???


19  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: March 30, 2017, 11:07:38 AM
hi,

i need a code for:

when i win change bethigh to true if previously is false

anyone help me?



Technically this is what you asked for.

if (win) then
   bethigh = true
end

bethigh is changed to, or left true on a win.   I don't know how it would change to anything else since you didn't provide any supporting code.  

did you really mean to flip bethigh?  IE if true make false or if false make true?    In that case it's bethigh = !bethigh.  



tnx but i need to flip ...
if win
if bethigh is true  i need set to false and if false i need to set to true




Then it's the

if (win) then
   bethigh = !bethigh
end

This sets bethigh the opposite of what it is. 


great tnx a lot!
20  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: March 29, 2017, 08:41:40 PM
hi,

i need a code for:

when i win change bethigh to true if previously is false

anyone help me?



Technically this is what you asked for.

if (win) then
   bethigh = true
end

bethigh is changed to, or left true on a win.   I don't know how it would change to anything else since you didn't provide any supporting code.  

did you really mean to flip bethigh?  IE if true make false or if false make true?    In that case it's bethigh = !bethigh.  



tnx but i need to flip ...
if win
if bethigh is true  i need set to false and if false i need to set to true


Pages: [1] 2 3 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!