-
Posts
17.611 -
Joined
-
Last visited
-
Days Won
559
Everything posted by Stan`
-
The multiplayer game lobby needs more moderators
Stan` replied to ibos's topic in General Discussion
So you posted copyrighted material ? -
[resolved] Request for more information regarding ban from the lobby.
Stan` replied to cloud9's topic in Help & Feedback
As far as I know you are free to use different accounts between trac, phab, lobby, forums, irc, as long as they are unique. There would be no reason for us to link them all together. You are also free to change your username on the forums, if you don't want to hide the fact that you changed it. This way you don't need two accounts. You only have to ask feneur for instance. -
Application for a Documentation Position
Stan` replied to Doktoreus's topic in Applications and Contributions
@Doktoreus Any news ? -
I have no idea what could causes this maybe bad driver initialization. Maybe @vladislavbelov or @wraitii would know.
-
774 let civ = gameState.getPlayerCiv(); 775 let trainableShips = []; 776 gameState.getOwnTrainingFacilities().filter(API3.Filters.byMetadata(PlayerID, "sea", sea)).forEach(function(ent) { 777 let trainables = ent.trainableEntities(civ); 778 for (let trainable of trainables) 779 { 780 if (gameState.isTemplateDisabled(trainable)) 781 continue; 782 let template = gameState.getTemplate(trainable); 783 if (template && template.hasClass("Ship") && trainableShips.indexOf(trainable) === -1) 784 trainableShips.push(trainable); 785 } 786 }); The offending code. I guess it cannot iterate in undefined. Could be fixed by adding a little check 774 let civ = gameState.getPlayerCiv(); 775 let trainableShips = []; 776 gameState.getOwnTrainingFacilities().filter(API3.Filters.byMetadata(PlayerID, "sea", sea)).forEach(function(ent) { 777 let trainables = ent.trainableEntities(civ); 778 if (!trainables) 779 return; 780 for (let trainable of trainables) 781 { 782 if (gameState.isTemplateDisabled(trainable)) 783 continue; 784 let template = gameState.getTemplate(trainable); 785 if (template && template.hasClass("Ship") && trainableShips.indexOf(trainable) === -1) 786 trainableShips.push(trainable); 787 } 788 });
-
Organic modelling is hard.
-
===[TASK]=== Current issues with Celtic units and guideline for the next
Stan` replied to Genava55's topic in Official tasks
Stay tuned. -
Did you touch the UI in some way ? Looks like some of your changes broke it.
-
===[TASK]=== Current issues with Celtic units and guideline for the next
Stan` replied to Genava55's topic in Official tasks
That's actually a pretty good question. I care enough not to make big decisions the decaying patch will be the biggest in years, but I don't know about the others. I think @elexis cares as well, since borg's mod exists -
[resolved] Request for more information regarding ban from the lobby.
Stan` replied to cloud9's topic in Help & Feedback
The lobby was down for some time today I believe, did you retry to join ? @user1 @elexis @Hannibal_Barca -
Yes. It's .DELETED not .DELETE I believe. Also don't forget to put text in those files
-
===[TASK]=== Current issues with Celtic units and guideline for the next
Stan` replied to Genava55's topic in Official tasks
Do you see Leonidas pushing the Persian guy over the edge ? Just like that. -
It's a hidden folder normally.
-
You too. Have a nice day.
-
It's okay
-
What ?
-
Depends if you cloned art source or not. If you didn't you can't. Since most of the new helmets are just improved versions of the old ones you can just delete them I guess. With tortoise you can right click and delete.
-
Glad I could help. It shouldn't but depending on what you touch it might have an influence. For instance, both will share the same user.cfg unless you run the dev version with -writableRoot (Notice it only has one '-') this flag makes the game portable. https://trac.wildfiregames.com/browser/ps/trunk/binaries/system/readme.txt line 68 Sure just go in wherever you cloned it and run ./pyrogenesis -writableRoot
-
using either svn, or the git mirror on htpps://github.com/0ad/0ad, Not that you have to compile the game yourself.
-
What does ?
-
Remove fonts and add font dependencies in Linux package
Stan` replied to Pander's topic in Bug reports
See my Github for a attempt to bench Cairo ans FreeType for atlas texture génération. -
I don't think IPV6 is supported by our version of Enet. It's in the works.
-
Copy pasting IP for direct connect I believe.
-
Remove fonts and add font dependencies in Linux package
Stan` replied to Pander's topic in Bug reports
Not sure you'll gain much space. But sounds like a nice thing to do. I'm afraid it won't be top priority though. Not sure about crossplatform compatibility. Pinging @Itms and @s0600204 as they might know more. -
Same error ?