Blockland Forums > Help
how do you make new add-ons?
Crown2:
Because /Self Delete is hard.
mp7964:
--- Quote from: Crown2 on October 03, 2011, 07:57:09 PM ---Because /Self Delete is hard.
--- End quote ---
It's a simple script that I doubt anyone could screw up, and the simplest one I could think of.
Eeposs:
--- Quote from: mp7964 on October 03, 2011, 07:59:06 PM ---It's a simple script that I doubt anyone could screw up, and the simplest one I could think of.
--- End quote ---
--- Code: ---function serverCmdHello()
{
echo(hello, world!);
}
--- End code ---
otto-san:
--- Quote from: Eeposs on October 04, 2011, 07:01:01 PM ---
--- Code: ---function serverCmdHello()
{
echo(hello, world!);
}
--- End code ---
--- End quote ---
that won't work correctly.
--- Code: ---function serverCmdHello()
{
echo("hello, world!");
}
--- End code ---