corrade-lsl-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 9  →  ?path2? @ 10
/source/eggdrop/ban.lsl
@@ -239,7 +239,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "ban")
return;
/source/eggdrop/configuration.txt
@@ -21,9 +21,12 @@
# The password for the group.
password = "mypassword"
 
# The version that this HUD is compatible with.
# The version that this template is compatible with.
version = 9.163
 
# The character to use for commands.
command = @
 
# The range for the dice rolling command (inclusive).
roll range = 3,64
 
/source/eggdrop/dice.lsl
@@ -224,7 +224,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "roll")
return;
/source/eggdrop/eval.lsl
@@ -392,7 +392,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "eval")
return;
/source/eggdrop/fortune.lsl
@@ -263,7 +263,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "fortune")
return;
/source/eggdrop/help.lsl
@@ -224,7 +224,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "help")
return;
 
/source/eggdrop/invite.lsl
@@ -226,7 +226,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "invite")
return;
/source/eggdrop/joke.lsl
@@ -263,7 +263,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "joke")
return;
/source/eggdrop/spank.lsl
@@ -224,7 +224,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "spank")
return;
/source/eggdrop/wiki.lsl
@@ -341,7 +341,8 @@
wasKeyValueGet("command", configuration))
return;
list command = llParseString2List(data, ["@", " "], []);
list command = llParseString2List(data,
[wasKeyValueGet("command", configuration), " "], []);
if(llList2String(command, 0) != "wiki")
return;