mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
25 lines
455 B
Text
25 lines
455 B
Text
// DIE's test script
|
|
// Bugreports : horsicq@gmail.com
|
|
//
|
|
// History:
|
|
//
|
|
function load()
|
|
{
|
|
// call on script load
|
|
script.addMessage("Loading test script... ");
|
|
}
|
|
function name()
|
|
{
|
|
// return script's name
|
|
return "Test Script ver 1.0";
|
|
}
|
|
function info()
|
|
{
|
|
// return script's information
|
|
return "Test Script information\nbla-bla";
|
|
}
|
|
function run()
|
|
{
|
|
// main script's function
|
|
script.addMessage("Hello, I am a test script");
|
|
}
|