Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The're fixed so you can't include custom args when you call it though, worth remembering.
So "/bal = accts.balance" will display your balance, and "/send = accts.xfer_gc_to {to:"alt",amount:accts.balance}" will send all your money to your alt username.
ty ^^
I did finally find on https://docs.google.com/document/d/1cNms-T_KSFy0F5j1xHXrUZEGd7AM49QEork3KlpGqkc/edit#
"Macros unfortunately cannot themselves have arguments, which limits what you can do with them somewhat"
which isn't on http://wiki.hackmud.info/view/Macros (which is blank, but could have as much information as the above)
For example, if I wanted a macro to send messages to a room called "test", I could use
/c = {chats.send{channel:"test",msg:{0}}}
To actually use this, you simply type
/c "Message"
If you get the synatx right, you can create macros with arguments.
Things of note:
1. The argument being passed to chats.send has two curly braces ( '{{' and '}}' ) at the beginning and end of it.
2. the {0} is quoted, the {1} is not.
If you observe these differences from your attempt, you will be successful!
https://s33.postimg.org/6lq44k9ov/macro.png