User:Mikeistaken: Difference between revisions

From Space Station 13 Wiki
Jump to navigation Jump to search
Added my page. its going to be mainly used for devices I make for now, but I might add more personal things later aswell
 
No edit summary
Line 41: Line 41:
** Set starting String to <code>address_1=</code>
** Set starting String to <code>address_1=</code>
** Set ending String to <code>;sender=[mainframe address];command=term_message;data=command=setmode\&light=3\&equip=3\&environ=3</code>
** Set ending String to <code>;sender=[mainframe address];command=term_message;data=command=setmode\&light=3\&equip=3\&environ=3</code>
==Regex Strings Ive "Found"==
These Regex strings are ones that i've "found" and find useful. "found is in quotations cause not all of them ive found and some are amalgamations of ones I've found and strung together I am in no way good at Regex
* .+(?=filter_before%3d)filter_before|filter_after.*$
This one is used to remove everything before and after an area, filter before is used to filter everything up to it and it, while filter after filters itself and everything.

Revision as of 19:59, 30 September 2025

Welcome to my user wiki! I will put stuff in here that I have created incase anyone wants info on how I made them. I may also put other things, but thats all I can think of for now

Mechcomp Machines

A couple of the stuff I've crafted in engineering. I'm quite proud of some of the stuff in here, while others are basic setup stuff for engines

Anti Apc Tampering Device

Picture shows a Mechanics device made of components in Space Station 13.
How the device should look visually (roughly) when done correctly

This device helps prevent APCs from being tampered with. However it still breaks when an Ion storm hits the station

Items Needed to set it up

The components that are needed are listed here:

  • 1 Powernet Component
  • 1 Signal Checker Component
  • 1 Signal Splitter Component
  • 1 Automatic Signaller Component
  • 1 Selection Component
  • 1 Signal Builder component
  • 1 Wrench
  • 1 Multitool

Setup Instructions

To Set it up connect these components to each other:

  • Powernet > Signal Checker: Check String
  • Signal Checker > Signal Splitter: Split
  • Signal Splitter > Selection Component: Add Selection
  • Automatic Signaller > Selection Component: Next + Send
  • Selection Component > Signal Builder: Add to string + Send
  • Signal Builder > Powernet: Send packet

After Those are connected Configure each one to these settings:

  • Powernet:
    • Toggle Self-Only Messages off
  • Signal Checker:
    • Set Trigger String to: PNET_PWR_CNTRL
  • Signal Splitter:
    • Set Trigger Field to: sender
  • Automatic Signaller:
    • Set interval Length to 0.5 seconds
    • Start the Automatic Signaller
  • Selection Component:
    • Toggle allow duplicate entries to off
  • Signal Builder:
    • Set starting String to address_1=
    • Set ending String to ;sender=[mainframe address];command=term_message;data=command=setmode\&light=3\&equip=3\&environ=3

Regex Strings Ive "Found"

These Regex strings are ones that i've "found" and find useful. "found is in quotations cause not all of them ive found and some are amalgamations of ones I've found and strung together I am in no way good at Regex

  • .+(?=filter_before%3d)filter_before|filter_after.*$

This one is used to remove everything before and after an area, filter before is used to filter everything up to it and it, while filter after filters itself and everything.