-
Posts
17.958 -
Joined
-
Last visited
-
Days Won
578
Everything posted by Stan`
-
Sound Lead Application - Sam Gossner
Stan` replied to Samulis's topic in Applications and Contributions
@Samulis Anything new ? -
@Servo can you help me figure whether we have the same bug ? The sound one. This bug only occurs to me when using the mod selector not when starting the main game directly.
-
Linking the AI scripts (Javascript) To a Python work environment
Stan` replied to ramtzok1's topic in Game Modification
@mimo @(-_-) @elexis @Itms and @wraitii Can you help ? Did you have a look at the profiler ? Did you try to add a jQuery.js file in your AI files (Pretty sure that won't work but worth trying) Did you look at the feedback reporter that sends machine data to our servers ? -
translation didn't apply to RC version of 0 A.D.
Stan` replied to thekolian1996's topic in Bug reports
I'm not sure, you might want to ask @dmzerocold or @Itms or even better the people on Transifex. -
translation didn't apply to RC version of 0 A.D.
Stan` replied to thekolian1996's topic in Bug reports
Basically EVERYTHING should be translated. So you can report all that's not working properly. -
translation didn't apply to RC version of 0 A.D.
Stan` replied to thekolian1996's topic in Bug reports
Hey thanks for reporting @Itms and @elexis looks like some translations are not pulled . Missing code ? -
I couldn't commit art, but hopefully will be able to do so soon, if there is bug in the RC. The RTL issue is something that needs a coder to fix, so maybe for A24 if someone is interested in doing that.
-
Sending messages from worker thread
Stan` replied to Kuba386's topic in Game Development & Technical Discussion
Try cleaning and updating workspaces again -
What was ?
-
The Release Candidates for the re-release of A23
Stan` replied to dmzerocold's topic in Help & Feedback
Thanks for testing. -
Yes you can by editing the ~/Library/Application\ Support/0ad/user.cfg file and adding those lines: Don't forget to delete the entries once the re-release is out.
-
You have to research technologies to improve your soldiers armor and weapons. Also note that champion units (The ones with triangles footprints) are way stronger than citizen soldiers.
-
New RC.
-
Hello @skaiware, have you tried the fixes on the previous pages for boost ?
-
Parallel GPU-based A* algorithm in pathfinding
Stan` replied to Kuba386's topic in Game Development & Technical Discussion
Nah the short one is the one that handles the obstructions constantly to go around buildings. The long range plans using bigger zones. When AI attacks I think two things happens. First the planning of the AI is done on the same thread as the rest, and thus slows everything, adds that the way the AIs handle units make them collide with each other a lot and that triggers the lag, because each unit is computing its own path taking into account all the other units around it. -
Fine by me. You can also do portraits or a new main menu background, or anything you want to improve
-
Parallel GPU-based A* algorithm in pathfinding
Stan` replied to Kuba386's topic in Game Development & Technical Discussion
Vertex Pathfinder ( Or short range) yes as Imarok mentioned you could probably have a look at D13 and all the subsequent patches. If corrected they would make a great addition to the game -
I like free games. I had been waiting for Company of Heroes for a while. This will be my next mod
-
If I may suggest another improvements, you should try to maximize the contrast between textures to make them less bland to look at. Like mixing the bricks and the white wall textures.
-
Thanks ! will be included in A24. If you are not already in the credits I'll add you
-
How I can listen to game data between the game and the AI?
Stan` replied to ramtzok1's topic in Game Modification
Well if both servers make API requests to each other it will work -
Next version Alpha 24 so at least 4 months, more like 6. At 0:55
-
New version. Please tell me if the installer has the correct background.
-
Parallel GPU-based A* algorithm in pathfinding
Stan` replied to Kuba386's topic in Game Development & Technical Discussion
@Angen depends on what you do. But as much as I'd like our engine to compute stuff on the GPU (Youdbe surprise of what 0AD can run on.) for the sake of compatibility it's a very bad idea. If we keep both systems the code will become really messy. Maybe another use for the strategy design pattern. @Kuba386 Don't be afraid to try it. At best you will learn a lot and make something really precious and at worst you'll still learn a lot. No that many programmer tried to thread it. It was designed to be threaded that was what programmers worked on.The original one was way worse. You're only as good as you let yourself be. If you don't try you'll never know. Netclient will likely soon be threaded. -
Parallel GPU-based A* algorithm in pathfinding
Stan` replied to Kuba386's topic in Game Development & Technical Discussion
The game is mainly using one thread. Just using multiple core will give us a boost on most systems.