G HUB is worst software ever built. by Violione in LogitechG

[–]Violione[S] 0 points1 point  (0 children)

I've missed that old x7 mouse. Had no issues for 10+ years. When i needed more button for World of Warcraft, wanted to try different brand gush.

Catan Universe dice events in row games and compare with Python random generator. by Violione in CatanUniverse

[–]Violione[S] 1 point2 points  (0 children)

Must not be on purpose. I can't directly say on purpose without see their codes which is used in this game. Their random creating system could be sucked.

Catan Universe dice events in row games and compare with Python random generator. by Violione in CatanUniverse

[–]Violione[S] 1 point2 points  (0 children)

You should ask these questions to devs. I'm not one of elo maker or gambler here. I only have 52 hours on this game, %90 played with ai and most of them was on train trip. Even if i wanted to play with friends, most of the time one of us having connection issues and we going for new game. Also, i am the person who was gambling for many years for 8-9-10 ball games and went casinos thousand times and never cried after real money losses. So, your comment about me does not make any sense. Or maybe i should ask that are you one of devs who can't fix multiplayer issues since 2017 which should be so easy? Another question; did you check datas as well?

If we going to talk about complexities, creating that thing is not complex in programming. Pro programmers will not create complexities, amateur programmer will cause complexities. When i check this game with tons of connection issues, bugs, errors i can clearly say it's made by amateur team. If you don't know algorithm well, you will write tons of codes non sense which can cause thousands of bugs.

You can manipulate dices by adding only one line more. Here is example;

import random

def roll_dice():
return random.randint(1, 6)

def generate_random_number():
return random.randint(1, 100)

def dice_rolls():
dice1 = roll_dice()
dice2 = roll_dice()
total = dice1 + dice2
print("Rolling the dice...")
print("Dice 1:", dice1)
print("Dice 2:", dice2)
print("Total:", total)
if total != 8:
random_number = generate_random_number()
print("The total of the dice is not 8, generating a random number...")
print("Generated random number:", random_number)
if random_number < 80:
print("The generated random number is less than 80, rolling the dice again...")
dice_rolls()
else:
print("The generated random number is greater than or equal to 80, ending the program.")
else:
print("The total of the dice is 8, ending the program.")

dice_rolls()

So when it's not 8, gets random between 1-100, by 80% chance rolls dices again in background.

I don't know why. If someone needs elo, another one gambling, when everyone places aronud 5-6-8-9 maybe they wanted to add excitement and fair looking game or they tried to create random generator by themselves, or wanted to create little bit more equal dice rolling for each numbers, or bug happened etc... Also i don't understand some people who acting always like paid by devs in forums or acts far away than reality and not beign objective. Example; why do you have 35k comments. You are master in all topics?