Comments
Akkarinage edited this page Dec 12, 2021
·
3 revisions
Pages 190
Getting Started
- Installation instructions
- Transitioning from SVN to GIT
- Compiling on your OS
- Connecting & Starting rAthena
Configure your Server
- Scripting like a pro!
- Server Modifications and what to expect
- Database Configuration
Customization
- Adding Custom Items
- Adding Custom Monsters
- GRF Encryption
Setup the Client
- Data folder
- Diff files
Misc Databases
Third-Party Software
Clone this wiki locally
A comment is something that is not read by the compiler or interpreter.
Syntax
Athena Scripting Language
Single line comments begin with double slash // and continue to the end of line.
// This is a comment that takes up the whole line.
set .@amount, 100; // comments can go after script commands too
Multi-line comments begin with /* and end with */
/* My Kafra
* version: 1.0
* by: Your Name
*/
Athena Source Code
rAthena is written in C, so single line (//) or multi line (/* */) comments can be used.