(no title)
seanhly | 17 days ago
- Bristol Airport (bus station) is somehow located in Milan. This makes it possible to get a £6 ticket to the stop after Bristol Airport on the Bristol-Plymouth route. Then when you see the bus glitching its way towards Milan you can cut the journey short before passing Bristol Airport, and hey presto you're in Milan. Likewise, it's possible to get buses from this weird station in Milan directly to England, which is a bug.
- You make things easier for cheaters by printing the game start params to the console when users select one of the two/three starting options. Cheaters can just store the printed variable as a global var, set the end coordinates to be directly next to the finish line, and win the game in seconds. It would be best to introduce some basic cheat-detection: overall duration too short, velocity too high, too little money spent, etc. Best solution would be to do more things on the backend like logging game start and end times.
- Users are able to click on any bank to change currency, even if it's on another continent. Even if this is blocked on the UI, it can still be done in DEV tools.
- Likewise, players are able to use hotels anywhere, not just hotels in their vicinity.
- It seems you switch the currency for taxis only when the country officially changes. So, when there are glitches with this territorial transition sometimes the currency doesn't change. E.g. when I got a bus to Milan's "Bristol Airport" stop (from Bristol, England) I was then able to book taxis in GBP regardless of being in Europe.
- When you change timezones, fast-forwarding to your next departure can sometimes cause the game clock to go backwards by up to 1 hour. I was able to use this glitch to scrape an hour off my time at each stop on the continent.
- I noticed some people using nicknames like AdolfHitler in the leaderboard. I would consider running usernames through a character-level sentence transformer to calculate similarity to some banned usernames (there might even be a pre-trained transformer for offensive language, allowing you to classify usernames as allowed/offensive). The username field could otherwise become a shitshow of abuse and advertising spam if there are no restrictions placed here.
- Banks should close after 5pm and open at 9am.
- Seeing as most of the routes start on the island of Ireland, I'd recommend adding Cork ferry port (Ringaskiddy). It's a major connection to France and has some seasonal ferries to Spain also.
- Maybe remove the icon for tram stations until that functionality is available.
- Might be nice to allow players to see the timetable for other stations along their current route. I get that making all timetables visible might ruin the fun, but it's possible to hop off early at the next station anyway if you're quick enough to click into the station while approaching, pause the game, read the timetables, and hop off if appropriate. This style of play would definitely require some dev tools usage so might as well democratise access to timetables to all players.
- When a player begins to move along the route, I think it would be nice if the game speed accelerated proportionally to the length of the route. Going from 1x speed to 100x speed for a walking route is often instant for example, which removes the opportunity for players to use that walking time to think of their next move.
- Some train routes have strange, unrealistic detours, like the train from Edinburgh to Plymouth, it randomly turns east for a 100 miles near Leads before going back towards Leeds to resume its journey along the original direction. You could potentially detect these jagged turns in your route files automatically using some maths.
- Might be nice to integrate sailrail tickets. These allow travellers to go from any station in Ireland to any station in the UK for under 70 EUR usually.
- There's a great app called OSMAnd which provides offline public transport routes and direction routing for the entire globe. Although the app costs money I believe all the code is open source and I presume the data is publically accessible. You could potentially use this data to flesh out the routes and timetables in your game, and to make the contours between points on the route realistic as opposed to the current zig zag lines.
Again, great work!
reedlaw|16 days ago