Complicated idea - how to create car racing for my RPG game's players
Posted
by Donator
on Stack Overflow
See other posts from Stack Overflow
or by Donator
Published on 2010-04-25T12:24:00Z
Indexed on
2010/04/25
12:33 UTC
Read the original article
Hit count: 334
So, I want to create car racing for my RPG game's players. Player can create race and choose how many participants can participate in race. After race is being created, other people can join it. When the maximum participants are collected, race begins. My idea, when the last participant joins, then instantly choose the winner (who's car is the best, that person wins), but how can I do it? If I choose to pick the winner after the last participant joins, then I have to put many queries in one page (select data from table, then delete the race, then select players' cars' statistics and pick the winner and then again, using mysql, send message to everyone). But this idea is really not optimal and it will lag cruelly for that last person. Maybe you have any ideas how I can avoid lag and make it more optimal. Thank you very much.
© Stack Overflow or respective owner