Search results

    1. GalactusX

      Synoro Engineering Shipyard

      I come here just to say one thing... amazing designs!! keep it up!!
    2. GalactusX

      RegEx compilation thread

      The system I am using is this: - Name of the variable. - Variable identifier. - Value / data that the identified variable must have. By this I mean for example: PlayerPoints1[200]PlayerPoints2[300]PlayerPoints3[400]PlayerPoints4[500] - PlayerPoints: Is the name of the variable - 1,2,3,4... ...
    3. GalactusX

      Power System Overhaul Proposal

      ... ARE YOU SURE ...
    4. GalactusX

      Power System Overhaul Proposal

      At this point in the conversation, players need an example of how a reactor would be built according to the proposed new energy system, everything else is castles in the air. We need a response from the development team, please.
    5. GalactusX

      Power System Overhaul Proposal

      I agree with all the changes suggested in the game with the new system of energy generation, the only thing I disagree with is to implement a "hot zone" surrounding the CORE, that forces the players to have A space in their ships in which they can not position other systems (because it has...
    6. GalactusX

      Power System Overhaul Proposal

      The community of players should do in this post only 3 things: - Whether they agree or disagree with the suggested changes. - Give their opinion if these changes are or are not good for the game of other players (not just for a specific type of players, for all) - If they see that he can change...
    7. GalactusX

      Power System Overhaul Proposal

      PVP players against RP players, RP players against PVP players, crew or non-crew, new AI or not new AI, CORE power or not CORE power ... everything will arrive, I only hope that when the changes come, the players have a "Adequate time frame" to accommodate and adapt to them. Any other...
    8. GalactusX

      regEx syntax for removal of first or last field in a string

      This is what you want to do? This do 2 things, convert the first group in to a "non-group match" (This excludes the text of the captured group) and then select the rest of the string [REPLACEALL](?:(:\w+:))(.?)*[WITH]$1 Regex101 - online regex editor and debugger This other regex, select the...
    9. GalactusX

      regEx syntax for removal of first or last field in a string

      What do you want to do, take a string of characters, and separate each "word/match" into a different display? for example: display 1 ":the super: A E S T H E T I C : ship: build:" display 2 ":the super:" ... display 3 ": A E S T H E T I C :" ... display 4 ":ship:" ... display 5 ":build:" is...
    10. GalactusX

      Power System Overhaul Proposal

      I love the idea of being able to build "small nuclear power plants" within our spacecraft ... but keep these points in mind ... Disadvantages that I see of the current energy generating system: - Player are forced to "fill" the interior of his constructions with large amounts of blocks for...
    11. GalactusX

      Allow to use factory blocks and shipyards in asteroids

      After a long time, I would like the possibility of placing factory blocks and shipyards on asteroids, these are my reasons why this could be good: - Mobile space stations: This would bring a considerable amount of RP and PVP and PVE. - Carry your base with you: Often, players travel great...
    12. GalactusX

      When is the next update planned? What things are going to be solved? Is going to implement...

      When is the next update planned? What things are going to be solved? Is going to implement something new? Information, please
    13. GalactusX

      RegEx compilation thread

      Something was working ... Dont appear in the gif, but i´m writing in the "WRITE MESSAGE" display When the first display block is full, it copy&paste the text inside to the second UP display and clear the first for new text input
    14. GalactusX

      RegEx compilation thread

      Metadata is good, but for certain tasks not, for example, I have worked in real life with automatas, much of the programming, if not all, is based on scheduling the point-to-point movement, this means a start point, a step intermediate, and a final one, the final program is much clearer and easy...
    15. GalactusX

      RegEx compilation thread

      A new contribution from my hand, if you have asked how to "detect" if a display block can no longer contain "more lines of text", or can no longer contain "more characters" X , I have found these solutions: This detect the number of characteres in a line (current limit 240)...
    16. GalactusX

      Display block command [SEARCH-COMPARE]

      Fellow Starmadian Is working on creating a fantastic reference of the different uses of regex commands, different applications and uses. If anyone has any doubts or find something useful, I hope everyone who has knowledge, share it with the rest of the community. Personally, I will contribute as...
    17. GalactusX

      RegEx compilation thread

      I have found a limitation with the regex commands, it seems that using either [a-z] or [A-Z] or [\w] ... does not detect/match the letter "ñÑ" ... and this should be added to the verification range by hand. Therefore it should be: *This count UP A,B,C,D... First display block...
    18. GalactusX

      Why in the name of GOD regex dont want to mach "ñ Ñ" !!!

      Why in the name of GOD regex dont want to mach "ñ Ñ" !!!
    19. GalactusX

      Read by Schine Semi-vague Lua Computer Suggestion

      When I say computercraft, I mean the minecraft mod, not starmade, but it would be great to have it inside XD
    20. GalactusX

      RegEx compilation thread

      Give me a moment.. you want remove spaces too? Text to replace all numbers "I play StarMade 0.199.429" [REPLACEALL][0-9. ]()[WITH]$1 Result "IplayStarMade" Easy to solve, just add one "space" between the square brackets [0-9. ] Remember, everything inside the brackets will be detected, and the...