Help:Contents
For help with wiki usage in general, see MediaWiki Help.
Contents |
[edit] NWN Lexicon Help
- Getting Started with the NWN Lexicon
- Editing an article
- WikiCode Cheat Sheet
- NWN Lexicon Style Manual
- All NWN Lexicon help topics
[edit] Frequently Asked Questions
[edit] How can I practice editing without worrying about messing up current pages?
To practice editing, please use your user page.
[edit] How do I post NWScript code?
The NWN Lexicon can automatically put NWScript code in fancy little boxes and color it like the NWN Toolset's script editor. To do this, put <nwscript></nwscript> tags around the code.
Note: the traditional wiki syntax for marking a code block is to put a space (" ") before each line of code. When using the <nwscript> syntax, this is neither necessary nor recommended (as doing so may alter tab alignment if a reader copy-pastes the code elsewhere).
Example:
Wiki Code | Display |
---|---|
<nwscript> void main() { object oPC = GetFirstPC(); SendMessageToPC(oPC, "Hello World!"); } </nwscript> |
void main() { object oPC = GetFirstPC(); SendMessageToPC(oPC, "Hello World!"); } |
[edit] Some of the script examples are showing wiki code. What's going on?
The conversion from HTML to a wiki format left us with some kinks. In particular, some pages on the old Lexicon added links to datatypes so readers could click on the keyword and be transported to the page that describes them. If you encounter a script example that looks like this...
... that's what happened. These should all be fixed, but there may still be some lingering around here and there. If you find one that you can fix yourself, great! If not, leave a message on Squatting Monk's talk page and he will fix it ASAP.
[edit] Will links to the old Lexicon be broken by the move to the wiki version?
No, all the old links should work. Dood has set up a system whereby URLs from the old Lexicon are routed to their equivalent pages in the new Lexicon wiki. If you do encounter a link that used to work with the old Lexicon but is now broken, please leave a note on Squatting Monk's talk page and he will fix it ASAP.