smd reference page rebuilt
Moderator: Moderators
- CarRepairer
- Cursed Zero-K Developer
- Posts: 3359
- Joined: 07 Nov 2007, 21:48
Re: smd reference page rebuilt
If you choose to follow my suggestion, you could then replace your existing [0,1] with [0|1].
Re: smd reference page rebuilt
Please, would someone think of the lesser nerds of us?enetheru wrote:I was thinking more regex expression myself
regex are sure a great thing, but not that friendly to mentally decode for the average human. Try to follow the same conventions as in other wiki pages. (exemple)
- CarRepairer
- Cursed Zero-K Developer
- Posts: 3359
- Joined: 07 Nov 2007, 21:48
Re: smd reference page rebuilt
In your other wiki link there is no example he can use for range. That's why I recommended [-1,1] as range and [0|1] for discrete values.zwzsg wrote:Please, would someone think of the lesser nerds of us?enetheru wrote:I was thinking more regex expression myself
regex are sure a great thing, but not that friendly to mentally decode for the average human. Try to follow the same conventions as in other wiki pages. (exemple)
Re: smd reference page rebuilt
CarRepairer wrote:In your other wiki link there is no example he can use for range.
Code: Select all
possible values for facing are:
"south" | "s" | 0
"east" | "e" | 1
"north" | "n" | 2
"west" | "w" | 3

Re: smd reference page rebuilt
I like that. its quite clear. I will use it :)CarRepairer wrote:In your other wiki link there is no example he can use for range. That's why I recommended [-1,1] as range and [0|1] for discrete values.zwzsg wrote:Please, would someone think of the lesser nerds of us?enetheru wrote:I was thinking more regex expression myself
regex are sure a great thing, but not that friendly to mentally decode for the average human. Try to follow the same conventions as in other wiki pages. (exemple)