Difference between revisions of "User:Nerdvana"

From City of Hope MUSH
Jump to navigation Jump to search
Line 1: Line 1:
== Code ==
+
== Helpful Links ==
 +
 
 +
=== Descing ===
 +
 
 +
* [http://www.mrinitialman.com/OddsEnds/Sizes/compsizes.xhtml Height Comparison]
 +
* [https://i.pinimg.com/564x/e7/0e/5d/e70e5d1df7747a1065bac140025dc46e.jpg Jeans.com Fit Guide]
 +
* [https://i.pinimg.com/564x/ae/91/98/ae9198ebd36acef97979d9db58bf835a.jpg Names of Sleeve Lengths]
 +
* [https://static.wixstatic.com/media/84c113_d9931dd8c1a04ab78925d89fb1ee9ebb~mv2.jpg/v1/fill/w_1000,h_646,al_c,q_90,usm_0.66_1.00_0.01/84c113_d9931dd8c1a04ab78925d89fb1ee9ebb~mv2.jpg Parts of a boot]
 +
 
 +
=== Useful Utilities ===
 +
 
 +
* [https://www.random.org/strings/ Random.org]
 +
 
 +
== On MUSH Code ==
  
 
As I code things I'll include them here if they are minor, if they are major I'll make separate pages for them.
 
As I code things I'll include them here if they are minor, if they are major I'll make separate pages for them.
Line 17: Line 30:
 
I have uploaded my own descer code. There's enough to it that I've made a separate page for it [[User:Nerdvana/descer|here]].
 
I have uploaded my own descer code. There's enough to it that I've made a separate page for it [[User:Nerdvana/descer|here]].
  
== Helpful Links ==
+
== On Wiki Code ==
 +
 
 +
=== Text Messaging Format ===
 +
 
 +
When a text message or messaging thread is important for a scene it is good to include it but I'd prefer for it to look right, so I came up with the following nested table-in-table format that lets me do just that. Feel free to borrow it!
 +
 
 +
<nowiki>{| class="wikitable" style="width:100%"</nowiki>
 +
|-
 +
|+ ''<name that should appear at the top of the screen>''
 +
|-
 +
|
 +
<nowiki>{| style="width:100%"</nowiki>
 +
''<message lines would go here, see below>''
 +
|}
 +
|}
  
=== Descing ===
+
When applying the above think about how the name should appear. If its a message between two people it would be the other person's name (as this is simulating the view of your character's phone); if it is a group it would be the group name for the contact group or all of the names of the participants, as you would assume your character's phone would display them.
  
* [http://www.mrinitialman.com/OddsEnds/Sizes/compsizes.xhtml Height Comparison]
+
In the section where it says message lines use as many of the following two as required. The first is an incoming message (replace the name with the sender's name as it would display on your phone and replace the message with their message) while the second is an outgoing message from you.
* [https://i.pinimg.com/564x/e7/0e/5d/e70e5d1df7747a1065bac140025dc46e.jpg Jeans.com Fit Guide]
 
* [https://i.pinimg.com/564x/ae/91/98/ae9198ebd36acef97979d9db58bf835a.jpg Names of Sleeve Lengths]
 
* [https://static.wixstatic.com/media/84c113_d9931dd8c1a04ab78925d89fb1ee9ebb~mv2.jpg/v1/fill/w_1000,h_646,al_c,q_90,usm_0.66_1.00_0.01/84c113_d9931dd8c1a04ab78925d89fb1ee9ebb~mv2.jpg Parts of a boot]
 
  
=== Useful Utilities ===
+
|-
 +
| style="text-align:left;" | (''<name>'') ''<incoming message from name>''
  
* [https://www.random.org/strings/ Random.org]
+
|-
 +
| style="text-align:right;" | ''<your outgoing message>''
  
 
[[Category:Players]] [[Category:Active Players]] [[Category:Unofficial]]
 
[[Category:Players]] [[Category:Active Players]] [[Category:Unofficial]]

Revision as of 07:30, 3 September 2020

Helpful Links

Descing

Useful Utilities

On MUSH Code

As I code things I'll include them here if they are minor, if they are major I'll make separate pages for them.

LATTR commands

I have uploaded commands based on the lattr function that people with large examine results may find useful. They can be read here.

Modified @adesc

The following code makes it so that you do not trigger your own Adesc when you look at yourself (overriding the default Player @adesc) and displays the looker's name with their @moniker.

@adesc me=@break strmatch(%#,%!);think [moniker(%#)] just looked at you.

Personal Descer

I have uploaded my own descer code. There's enough to it that I've made a separate page for it here.

On Wiki Code

Text Messaging Format

When a text message or messaging thread is important for a scene it is good to include it but I'd prefer for it to look right, so I came up with the following nested table-in-table format that lets me do just that. Feel free to borrow it!

{| class="wikitable" style="width:100%"
|-
|+ <name that should appear at the top of the screen>
|-
|
{| style="width:100%"
<message lines would go here, see below>
|}
|}

When applying the above think about how the name should appear. If its a message between two people it would be the other person's name (as this is simulating the view of your character's phone); if it is a group it would be the group name for the contact group or all of the names of the participants, as you would assume your character's phone would display them.

In the section where it says message lines use as many of the following two as required. The first is an incoming message (replace the name with the sender's name as it would display on your phone and replace the message with their message) while the second is an outgoing message from you.

|-
| style="text-align:left;" | (<name>) <incoming message from name>
|-
| style="text-align:right;" | <your outgoing message>