EXPRESSION BELOW. Click "More" Button.
A fully functioning calculator using only an (39-line) expression gate.
INCLUDES PI BUTTON :D
Use it just like if you were using you own personal pocket calculator. … more info
EXPRESSION BELOW. Click "More" Button.
A fully functioning calculator using only an (39-line) expression gate.
INCLUDES PI BUTTON :D
Use it just like if you were using you own personal pocket calculator.
This video demonstrates how to use it.
If you wish to try it out for yourself, hook your own calculator up with this expression code ( YOU NEED THE LATEST VERSION OF WIREMOD ) :
N@Calculator Extreme (By IEF015)
I@B1 B2 B3 B4 B5 B6 B7 B8 B9 B0 Add Sub Mul Div Exp Equal Clear Pi Ne
O@Out
De == 0 & B1 -> Out = Out * 10 + 1;
De == 0 & B2 -> Out = Out * 10 + 2;
De == 0 & B3 -> Out = Out * 10 + 3;
De == 0 & B4 -> Out = Out * 10 + 4;
De == 0 & B5 -> Out = Out * 10 + 5;
De == 0 & B6 -> Out = Out * 10 + 6;
De == 0 & B7 -> Out = Out * 10 + 7;
De == 0 & B8 -> Out = Out * 10 + 8;
De == 0 & B9 -> Out = Out * 10 + 9;
De == 0 & B0 -> Out = Out * 10;
Add -> Out2 = Out;
Sub -> Out2 = Out;
Mul -> Out2 = Out;
Div -> Out2 = Out;
Exp -> Out2 = Out;
Add -> Out = 0;
Sub -> Out = 0;
Mul -> Out = 0;
Div -> Out = 0;
Exp -> Out = 0;
Add -> Op = 1;
Sub -> Op = 2;
Mul -> Op = 3;
Div -> Op = 4;
Exp -> Op = 5;
Op == 1 & Equal -> Out = Out2 + Out;
Op == 2 & Equal -> Out = Out2 - Out;
Op == 3 & Equal -> Out = Out2 * Out;
Op == 4 & Equal -> Out = Out2 / Out;
Op == 5 & Equal -> Out = Out2 ^ Out;
Clear -> Out = 0;
Clear -> Out2 = 0;
Out > 99999999 -> Out = 404;
Pi -> Out = 3.1415927;
Ne -> Out = -Out;
De == 0 & Dec & Out == 0 -> D = 1;
De == 1 & Dec & Out == 0 -> D = 0;
Clear -> De = 0;
De == 1 & B0 -> Out = Out * 0.1;
(To extract this code into gmod, simply open notepad, place the below code into notepad. Save it with any name [perferably a name that has something to do with a calculator]. Goto your main garrysmod/garrysmod folder, open up the "data", then open up "ExpressionGate" folder, and place the newly made text file into there. Open up GMod, goto expression gate, look for your file, and hook it up. Have Fun ;D ) less info
- 1296 Views
- Added 12 months ago
nice work :)
Nah.
tell us how to make it or i will rip your liver out and break your nose
Nice work dude.