Wolf Industries

Status
Not open for further replies.
Messages
922
Reaction score
1,198
Points
710
Location
Germany
A contacts page is now released under the important info section
 
Messages
922
Reaction score
1,198
Points
710
Location
Germany
Wolf industries announces:
Accounts Payable


Wolf-Industries will be releasing Accounts Payable tonight. We will not be disclosing the details of this but for more info you should have a look at the movies with Keanu Reeves (Not matrix)

We will also be releasing our Terms of Service and some small bug fixes! For more info join our Discord https://discord.gg/G3pawD8HB7
 
Messages
922
Reaction score
1,198
Points
710
Location
Germany
Wolf Industries wants to be transparent with our dealings
This is why we are releasing the code for Higher or lower and the LotterySystem


Higher or lower

976b6ae75c7b2356a0ceeb6bf0e37ce3-png.jpg


Lottery
1b1c170633856e428b036fb7fbbaecfa.png



Important
For any info about this logic you can always contact me, This can be here or on the Wolf Industries discord
 
Messages
901
Reaction score
2,533
Points
790
Location
Netherlands
FTFY
Code:
$numbers = [];

for ($i = 0; $i < 5; $i++) { // Loop 5 times
    $numbers[$i] = mt_rand(1, 100); // Store a random number
}

$randomNumber = $numbers[mt_rand(1, 5)]; // Pick one of the 5 random numbers

if ($randomNumber > 50 && $guess === 'over') {
    return $this->transferWinnings(true, $bet); // Higher than 50, you guessed over, you win!
}

if ($randomNumber < 50 && $guess === 'under') {
    return $this->transferWinnings(true, $bet); // Lower than 50, you guessed under, you win!
}

$this->transferWinnings(false, $bet); // You lose

Your method already contains multiple exit conditions in your if statements, you do not have to use else in that situation, just start a new if statement weirdo.
 
Last edited:
Messages
922
Reaction score
1,198
Points
710
Location
Germany
@Kenty Is having a site that is actually usable a child soldier now? Wow you have low standards
 
Messages
2,948
Reaction score
7,489
Points
1,095
Location
Paralake
@Dank I’m not gonna talk to a guy that got his community janitors to stop bombings happening at their casino and that’s on jah

keep it moving
 
Messages
1,036
Reaction score
1,069
Points
660
Location
Birmingham, United Kingdom
@Dank

Your code isn't fair, its in your favour if they bet under, so claiming it's "100% fair" doesn't really add up.

Also, you claim the "mt_rand" function is the reason its fair, this is just a function for generating random numbers that's slightly quicker than the normal one, and generating 5 of them and then picking a random one of those doesn't increase your how fair your site is.

If you want it to be truly fair, it would be 50/50 odds, and you'd have a provably fair system in place, not a link to PHP documentation claiming that the reason your "100% fair"
 
Messages
2,948
Reaction score
7,489
Points
1,095
Location
Paralake
@Dank I see no quality, I see a copy and paste of PLPD online with a few words switched up and plans from your casino that won’t keep up in a few weeks. I see nothing good, Perpcasino still out does your website. The only thing I’ll give you is your lottery, that’s it.
 
Messages
922
Reaction score
1,198
Points
710
Location
Germany
@CensoredExe So how is my system not fair?

It is a random number generator and using a normal random function wouldn't change anything would it? I explicitly state the odds everywhere. The code is here the link to the function used is there, its not gonna get more fair then that buddy
 
Messages
922
Reaction score
1,198
Points
710
Location
Germany
@Kenty My website is not supposed to be just about the casino section. We use it to gain traffic so people will use our other sections like the crafting marketplace. I have a plan of where I am going to be taking this too and that is good quality software. My functionality doensn't revolve about the casino part how so ever. It's the smallest and least relevant part of the code.
 
Status
Not open for further replies.
Top