Hi guys,
I am working on a roulette Dapp, but there are a few things I encounter problems with.
eth.transact(keySecret(addrField.value), totalBetValue, contractAddress, board, 10000, eth.gasPrice());
In Dannys Lotto there is the u256 object which I can't get to work, is it removed in PoC6 or why is there nothing happening?

Also I want to create a transaction in which there are 37 arguments, all of them are integers. Is it okay to pass them as an array like: "eth.transact(keySecret(addrField.value), totalBetValue, contractAddress, myBets, 10000, eth.gasPrice());"
(myBets is the array of integers)? I never made it to a successful transaction...

If you guys want I can upload it somewhere when it is somehow playable so others can maybe learn from my Dapp too.^^
Comments
var payload = "";
var contract_address = "0xYourContractAddress";
for (var i = 0; i < 37; i++){
payload = payload + i.toString().pad(32);
}
// payload is the array of numbers padded to 32 bytes
eth.transact(eth.key, "0", contract_address, payload, "20000", eth.gasPrice);
// you can access the values with 0x0, 0x1, 0x2, etc,
// eth.storageAt(address, "0x1").dec()
example of the contract is here, https://gist.github.com/bigmug/128b2bf8e429cc53c720
Who knows though, I think the code base is all subject to change right now.