-
Posts
124 -
Joined
-
Last visited
Everything posted by GingerAdonis
-
Hi folks! I want to replace the RCT2 screenshot on the website ( https://openrct2.org/ ) with something more interesting. I'm considering a looping muted video featuring the main changes compared to RCT2. Thoughts on that? Or do you guys have a better ideas?
-
Well, the dots do serve a purpose in my opinion. If you're asking a question and get several answers, the dots might be an indication if the answer is from a regular player or a newbie (and thus might be wrong). Thoughts?
-
Let's discuss: profile pictures
GingerAdonis replied to YoloSweggLord's topic in Small Talk and Offtopic
I like big ducks and I can not lie -
What are these? Comic books?
-
You can consider adding this. This will stop checking the SSL certificate: curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); A proper fix can be found on Google.
-
<?php $url = "https://servers.openrct2.website"; $headers = array( "GET HTTP/1.1", "Accept: application/json" ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 60); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $data = curl_exec($ch); if (curl_errno($ch)) print "Error: " . curl_error($ch); else { //Show output var_dump($data); } curl_close($ch); This should work! (untested)
-
Add a notifications whenever an user enables zero clearance
GingerAdonis replied to DaJeroen's topic in Ideas
I recommend using the game notifications for these kind of actions, since they're game related, and not chat messages. -
That's a surprising twist. Article: http://www.eurogamer.net/articles/2016-03-03-a-big-interview-with-chris-sawyer-the-creator-of-rollercoaster-tycoon
-
We have a gitter chat already: https://gitter.im/OpenRCT2/OpenRCT2/non-dev
-
Problems starting the game..
GingerAdonis replied to MichelBien's topic in Problems, Bugs and Feedback
Should go fine yes! -
Do you still have this issue with the latest builds? Works fine here on Windows.
-
Unable to find RCT2 installation directory
GingerAdonis replied to blindbandt's topic in Problems, Bugs and Feedback
You can consider to install OpenRCT2 in the RCT2 directory/folder and launch it. That should work as well, although it's a dirty workaround. -
Host a server on 1 machine and make sure you get the local IP (INTERNAL IP). And type in the IP address of that machine on the other machine by clicking the 'Add server' button. Tutorial on finding your INTERNAL IP address: http://www.bobborst.com/tools/whatsmyip/
-
The new https://openrct2.org/ is up and running. It's still work in progress. Any feedback is welcome! Github repo if you wish to contribute: https://github.com/JarnoVgr/OpenRCT2.org
-
What @Maize04 says is correct. OpenRCT2 will run fine on both 32-bit and 64-bit.
-
That's a very bizarre bug which is hard to reproduce. I'm aware of it. Probably a problem on your end. The certificate is valid.
-
Updated the theme and forum software. Some earlier fixes might be reverted again. So let me know if you people find anything or if earlier reported bugs still exist. Thanks!
-
Windows builds work again.
-
Will look into it @jensj12
-
The Windows builds should work again once the following PR has been merged: https://github.com/OpenRCT2/OpenRCT2/pull/2553
-
The build system has ben drastically changed and the OpenRCT2.com download server will need to adapt to these changes. I expect this will be fixed tomorrow. Thanks for your patience.