Re: [Garry's Mod: Expression 2] Hyper Drive Upgrade
The hyperdrive doesn't use half as many chips as the one in that vid O__o
Also, how is expression 2 different/better than the old one (which I still use)?
Is it just that it's all written in code (Lua style or what?) or is there extra features?
Re: [Garry's Mod: Expression 2] Hyper Drive Upgrade
Quote:
Originally Posted by
n00b1n8R
The hyperdrive doesn't use half as many chips as the one in that vid O__o
Also, how is expression 2 different/better than the old one (which I still use)?
Is it just that it's all written in code (Lua style or what?) or is there extra features?
It's the basic route.
1. Fixed Bugs
2. More features (Now allowing entity() calls, and more operations
3. Persist, which makes a value retain a value, but without it taking a Input/Output space (Say if I just moved EVERYTHING from @persist into output. That would take forever to do. With @persist it's all nice and clean.
4. Upgraded Coding Format
The thing is with #4, I didnt know how the "If statement" was done. I originally started with Expression 1, as all of us did. I was so used to type "If" instead of "if". In Expression 2, "If" is not an operator, only "if" is.
Also, equal signs (=) cannot be used in the first part of a if statement (At least, I think so...)
Final thing. In Expression 2, we use ( ) and { } instead of spaces and ->.
Re: [Garry's Mod: Expression 2] Hyper Drive Upgrade