corrade-lsl-templates

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