#1✎ 258Y____Head AdminGardeningI like to garden!HobbiesReadingI like to read books!HobbiesDrawingI like to draw!HobbiesPut dispenser here
For example, if your garbage is "Example," you should look like this:
commands.push(new Command("whatever", function(){systemMessage("WOW MAN");}));
Posted
Edited
by Y____
#2✎ 258Y____Head AdminGardeningI like to garden!HobbiesReadingI like to read books!HobbiesDrawingI like to draw!Hobbies/*Por:slickerSnel et al*/
commands.push(new Command("lenny", function() {sendMessage("( ͡° ͜ʖ ͡° )")}));/*Por:CoimchelHeX*/
commands.push(new Command("afk", function() {sendMessage("/me is now AFK.")})); commands.push(new Command("noafk", function() {sendMessage("/me is no longer AFK.")}));
Posted
Edited
by Y____
#3✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfcommands.push(new Command("italic", function(text) {
var output="";
for (var i=1;i<text.length;i++) {
var no = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".indexOf(text.charAt(i));
if (no!=-1) {output += "??????????????????????????????????????????????????????????????".substr(no*2,2);} else {output += text.charAt(i);}
}
sendMessage(output);
}));
*note: use my style plugin instead
(oh cool this is post #404)
EDIT: Pretty much obsolete since /md exists now
Posted
Edited
by 12Me21
#4✎ 32Chemicalevar pingname="";
var pingchat="";
var sounds=true;
var name=document.querySelector("[data-username]").dataset.username;
var odm = displayMessage;
setTimeout(function(){sendMessage("/me is using SBSChat+! You can ping them using @"+name+".");},1000);
commands.push(new Command("playsound", function(param)
{
var c=new Audio(param);
c.Play();
}));
commands.push(new Command("stopsound", function(){
if(c){
c.Stop();
}
}));
commands.push(new Command("togglesounds", function() {
if (sounds==true) {sounds=false; systemMessage("Alerts off.");}else{sounds=true;systemMessage("Alerts on."); }
}));
displayMessage = function(d){
if (d.type=="message"){
if (sounds==true){
var b=new Audio("[url=http://urlsh.x10.mx/resources/click.mp3"]http://urlsh.x10.mx/resources/click.mp3"[/url];);
b.play();}
if (d.message.indexOf("@"+name)!=-1) {
pingchat=d.message;
pingname=d.username;
if (sounds==true){
var a=new Audio("[url=http://urlsh.x10.mx/resources/Ding.mp3"]http://urlsh.x10.mx/resources/Ding.mp3"[/url];);
a.play();}
}
if (d.username==name) {
if (pingname!="")
systemMessage(pingname+": "+pingchat);
pingname="";
}
}
return odm(d);
};
Posted
#5✎ 258Y____Head AdminGardeningI like to garden!HobbiesReadingI like to read books!HobbiesDrawingI like to draw!Hobbies/*Use: /manual InstructionName (overload#) quietmode*\
\* satisfaction not guaranteed */
var reference = "";
commands.push(new Command("manual", function(param)
{
var params = quickParamParse(param);
var quiet = false;
if (params.length === 3 || (params[1] && params[1].indexOf("(")))
quiet = params.pop();
if(params.length < 1)
{
warningMessage("Need an instruction name.");
return;
}
var instruction = params.join(" ").toUpperCase();
if (reference === "")
{
loadXMLDoc(location.protocol+"//scratch.smilebasicsource.com/reference.json", function(output){reference = JSON.parse(output); lookupCommand(instruction, quiet); return});
} else
lookupCommand(instruction, quiet);
}, "Look up SmileBASIC Command help"));
function lookupCommand(instruction, quiet) {
if(reference[instruction] === undefined)
{ instruction += " (1)"; }
if(reference[instruction] === undefined)
{
warningMessage("Unknown instruction " + instruction);
return;
}
if (quiet)
localModuleMessage(">" + instruction + ": " + reference[instruction].description.replace(/\n\t/g,"\n>\t") +"\n>>" + reference[instruction].parameters);
else
sendMessage(">" + instruction + ": " + reference[instruction].description.replace(/\n\t/g,"\n>\t") +"\n>>" + reference[instruction].parameters);
}
Posted
Edited
by Y____
#6✎ 4atm959I made a coin flip command that features Sonic and Tails.
commands.push(new Command("coinflip", function(){ //Coin flipping command.
var randomNumber = Math.floor((Math.random() * 2) + 1);
switch(randomNumber){
case 1:
systemMessage("Result: Sonic");
break;
case 2:
systemMessage("Result: Tails");
break;
}
}));
Posted
Edited
by atm959
#7✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfcommands.push(new Command("coinflip", function(){systemMessage("Result: "+"SonicTails".substr(Math.floor((Math.random() * 2))*5,5);}));
should work
Posted
#8✎ 28PerskaCthulhuJoin the cultEaster EggsBeesHiddenEaster Eggsdump of useless commands (one for now):
var auth = document.querySelector('.chat').getAttribute('data-chatauth');
var grinder_on=false;
var intervalcgame;
var intervalCoin;
commands.push(new Command( "grinds",function()
{
if (grinder_on===false)
{
intervalcgame = window.setInterval(getStaina, 3610000);
intervalCoin = window.setInterval(getStamina, 300000);
grinder_on=true;
systemMessage("Grinder activated.");
}
else if (grinder_on===true)
{
systemMessage("grinder is already on");
}
}
));
commands.push(new Command("notgrinds",function()
{
if (grinder_on===true)
{
clearInterval(intervalcgame);
clearInterval(intervalCoin);
grinder_on=false;
systemMessage("Grinder is now off.");
}
else if (grinder_on===false)
{
systemMessage("lol no grinders found");
}
}
));
dunno if it works but whatever
Posted
Edited
by Perska
#9✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourself/*jshint evil: true */
commands.push(new Command("runjs", function(args){try{eval(prompt("Code to inject?"));}catch(e){warningMessage("Error while running JS.\n" + e.stack);}}, "Test"));
commands.push(new Command("context", function(){
sendMessage(">>slackerSnail?\n\
just use n3ds browser to watch porn smh\n\
>don't take this out of context");
}));commands.push(new Command("key", function(){sendMessage("What's the key?");}));
Posted
Edited
by 12Me21
#10✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfcommands.push(new Command("calc", function(args){systemMessage(eval(args.replace(/(\d+)\^(\d+)/, "Math.pow($1, $2)")).toString());}));
Posted
#11✎ 258Y____Head AdminGardeningI like to garden!HobbiesReadingI like to read books!HobbiesDrawingI like to draw!Hobbies//Ignoring chat command by Lumage, new API conformance by Omiwa
commands.push(new Command("ignore", function(param){
var params = quickParamParse(param);
if(params.length !== 1){
warningMessage("username where is??");
return;
}
genericXHRSimple("/query/request/user?username=" + params[0], function(output){
ignore(JSON.parse(output).result.uid,true);
});
}));
commands.push(new Command("unignore", function(param){
var params = quickParamParse(param);
if(params.length !== 1){
warningMessage("username where is??");
return;
}
genericXHRSimple("/query/request/user?username=" + params[0], function(output){
ignore(JSON.parse(output).result.uid,false);
});
}));
Posted
Edited
by Y____
#12✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfcommands.push(new Command("key", function(){
var key=["OOOOHHHH MMMMYYYYYY GGGOOOOOOSSSHH!!! I can't stand waiting for this game! message me a BETA key AT LEAAAAST!! If not I understand :P but this looks flipping AWSOME!!!","Thats a cool looking game, by chance you would not happen to remember the key for it, would you?","Can anyone please tell me the key for the most recent version of this game","Hmm...i've never seen this game before, do you know the key for it?","what game it that it looks amazing and I have never seen it before","Is this undertale? if so, what's the key? It looks really cool!","when will you give out the key? I REALLYN WANT IT!!!!!!!!!!","What's the key for the latest version of this game?","Just wondering if you perhaps know the key please:]","let me know if you find the working key, thanks. =)","When is the key coming out, or is one out already?","Can i have the key? (If theres bugs i dont care)","BTW pls send me the key so i can get to work :)","awesome! do you by chance remember the key?","do u know the key\nthis game looks so good!","Do you know the Public Key for this game?","What's the public key for the original","key plz neecs this nowh rihit now plZ","what is the key, i really wanna know","canz i have a key? this lookz kewl","but why can\'t we get a key early","When\'s the real key coming out?","what is the full versions key?","I can't find the key anywhere!","That's awesome! Key, please?","Do you know what the key is?","WHAT IS THIS!? GIVE ME KEY!!","do you have a key for this?","by the way, spread the key!","Please telk me some keys...","where is the original key","Does anybody have a Key?","key please\npleeeeease!!","What is the public key?","Can you share the key??","whats are these keyyy?","but do u know the key","omg! what is the key?","i need a key though..","Whats the Key, buddy.","do you have the key?","KEEEYY PLEEEEEAAASE","do you know the key","Key pleeeeease!??!","Lemme get the key","I WANS DEH KEY!!!","What's the key??","key to the game?","What is the key?","What's the key?","Key please. :D","whats the key?","whats the KEY","whats the key","whats the key","what key are?","KEY PLS!!!","KEY! PLZ","Key...?","key plz","Key???","KEY!!","Key?","key?","key","I really want the key to that but im worried that there's a punishment for posting keys. But another thing is, that program looks VERY easy to make."];
sendMessage(key[Math.random()*key.length|0]);
}));
(actual quotes from miiiverse)
please drink responsibly
comcommands.push(new Command("getkey", function(){
var key="";
for(var i=0;i<8;i++){
key+="QQQQQKKKKKXXXXX33333JJJJJABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".substr(Math.random()*61|0,1);
}
sendMessage(key);
}));
generates a bad random key
ideally letters QXKJ333 should be less commoner but whatever
Posted
Edited
by 12Me21
#13✎ 32Chemicalevar _0x814e=["\x6C\x65\x6E\x67\x74\x68","\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\x72","\x45\x72\x72\x6F\x72\x3A\x20\x72\x61\x6E\x64\x6F\x6D\x28\x29\x3B\x20\x72\x65\x71\x75\x69\x72\x65\x73\x20\x74\x77\x6F\x20\x70\x61\x72\x61\x6D\x65\x74\x65\x72\x73\x2C\x20\x6D\x69\x6E\x20\x61\x6E\x64\x20\x6D\x61\x78\x2E","\x72\x61\x6E\x64","\x70\x75\x73\x68","\x54\x68\x65\x20\x62\x61\x6E\x6B\x20\x69\x6E\x74\x65\x72\x65\x73\x74\x20\x72\x61\x74\x65\x20\x69\x6E\x63\x72\x65\x61\x73\x65\x64\x21","\x54\x68\x65\x20\x55\x6E\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\x77\x61\x73\x20\x65\x6D\x70\x74\x69\x65\x64\x20\x6F\x66\x20\x61\x6C\x6C\x20\x70\x75\x62\x6C\x69\x63\x20\x74\x6F\x78\x69\x63\x20\x77\x61\x73\x74\x65\x21","\x54\x68\x65\x20\x74\x72\x61\x64\x65\x20\x6D\x61\x72\x6B\x65\x74\x20\x62\x75\x72\x6E\x65\x64\x20\x64\x6F\x77\x6E\x20\x61\x66\x74\x65\x72\x20\x79\x6F\x75\x20\x65\x6E\x74\x65\x72\x65\x64\x20\x69\x74\x21\x20\x54\x68\x65\x20\x68\x6F\x73\x70\x69\x74\x61\x6C\x20\x62\x69\x6C\x6C\x20\x63\x6F\x73\x74\x20\x61\x6C\x6C\x20\x74\x68\x65\x20\x63\x6F\x69\x6E\x73\x20\x79\x6F\x75\x20\x69\x6E\x76\x65\x73\x74\x65\x64\x2E","\x42\x65\x66\x6F\x72\x65\x20\x79\x6F\x75\x20\x65\x6E\x74\x65\x72\x20\x74\x68\x65\x20\x74\x72\x61\x64\x65\x20\x6D\x61\x72\x6B\x65\x74\x2C\x20\x69\x74\x20\x62\x75\x72\x6E\x73\x20\x64\x6F\x77\x6E\x2E\x20\x59\x6F\x75\x20\x64\x65\x63\x69\x64\x65\x20\x74\x6F\x20\x74\x72\x79\x20\x61\x67\x61\x69\x6E\x20\x6C\x61\x74\x65\x72\x2E","\x64\x77\x65\x65\x62","\x63\x72\x65\x65\x70","\x73\x6D\x69\x6C\x65\x79\x20\x74\x72\x61\x73\x68\x62\x61\x67","\x63\x6F\x69\x6E","\x49\x20\x73\x65\x65\x20\x74\x68\x69\x73\x20\x69\x73\x20\x79\x6F\x75\x72\x20\x66\x69\x72\x73\x74\x20\x74\x69\x6D\x65\x20\x69\x6E\x20\x74\x68\x65\x20\x53\x75\x70\x65\x72\x20\x43\x6F\x69\x6E\x20\x47\x61\x6D\x65\x21\x20\x54\x79\x70\x65\x20\x2F\x73\x63\x6F\x69\x6E\x67\x65\x74\x20\x74\x6F\x20\x62\x65\x67\x69\x6E\x2E","\x63\x61\x70\x73","\x62\x75\x79\x66\x6C\x75\x78","\x57\x6F\x77\x2C\x20\x6E\x69\x63\x65\x20\x6A\x6F\x62\x2C\x20\x73\x75\x63\x2D\x20\x45\x72\x72\x2C\x20\x70\x6C\x65\x61\x73\x75\x72\x65\x20\x64\x6F\x69\x6E\x67\x20\x62\x75\x73\x69\x6E\x65\x73\x73\x20\x77\x69\x74\x68\x20\x79\x6F\x75\x21\x20\x59\x6F\x75\x20\x68\x61\x76\x65\x20","\x20\x63\x61\x70\x61\x63\x69\x74\x6F\x72\x73\x20\x6E\x6F\x77\x2C\x20\x69\x6E\x20\x63\x61\x73\x65\x20\x79\x6F\x75\x27\x72\x65\x20\x63\x75\x72\x69\x6F\x75\x73\x2E","\x4F\x6E\x6C\x79\x20","\x20\x63\x6F\x69\x6E\x73\x3F\x20\x59\x6F\x75\x20\x65\x78\x70\x65\x63\x74\x20\x74\x6F\x20\x67\x65\x74\x20\x61\x20\x46\x4C\x55\x58\x20\x43\x41\x50\x41\x43\x49\x54\x4F\x52\x20\x77\x69\x74\x68\x20","\x20\x43\x4F\x49\x4E\x53\x21\x3F","\x73\x63\x6F\x69\x6E\x67\x65\x74","\x59\x6F\x75\x20\x67\x6F\x74\x20","\x20\x63\x6F\x69\x6E\x73\x2E\x20\x59\x6F\x75\x20\x6E\x6F\x77\x20\x68\x61\x76\x65\x20","\x20\x63\x6F\x69\x6E\x73\x2E","\x59\x6F\x75\x20\x63\x61\x6E\x20\x6F\x6E\x6C\x79\x20\x61\x63\x74\x20\x65\x76\x65\x72\x79\x20\x6D\x69\x6E\x75\x74\x65\x21","\x73\x63\x6F\x69\x6E\x69\x6E\x76\x65\x73\x74","\x20\x59\x6F\x75\x20\x67\x6F\x74\x20\x62\x61\x63\x6B\x20","\x20\x59\x6F\x75\x20\x6C\x6F\x73\x74\x20","\x4F\x68\x2C\x20\x79\x6F\x75\x20\x73\x65\x65\x6D\x20\x74\x6F\x20\x68\x61\x76\x65\x20\x73\x6F\x6D\x65\x20\x63\x61\x70\x61\x63\x69\x74\x6F\x72\x73\x2E\x20\x48\x65\x72\x65\x2C\x20\x79\x6F\x75\x20\x67\x65\x74\x20","\x20\x63\x6F\x69\x6E\x73\x20\x69\x6E\x73\x74\x65\x61\x64\x2E","\x59\x6F\x75\x20\x64\x6F\x6E\x27\x74\x20\x68\x61\x76\x65\x20\x74\x68\x61\x74\x20\x6D\x61\x6E\x79\x20\x63\x6F\x69\x6E\x73\x2C\x20","\x2E","\x73\x63\x6F\x69\x6E\x67\x6C\x6F\x61\x74","\x2F\x6D\x65\x20\x68\x61\x73\x20","\x20\x63\x6F\x69\x6E\x73\x20\x69\x6E\x20\x53\x75\x70\x65\x72\x20\x43\x6F\x69\x6E\x20\x47\x61\x6D\x65\x2C\x20\x64\x77\x65\x65\x62\x73\x2E"];function random(_0x37efx2,_0x37efx3){if(params[_0x814e[0]]!==2){return (Math[_0x814e[2]](Math[_0x814e[1]]()*_0x37efx3+_0x37efx2))}else {warningMessage(_0x814e[3])}}commands[_0x814e[5]]( new Command(_0x814e[4],function(){systemMessage(random(1,10).toString())}));var data=0;var justGotCoins=false;var coins=0;var arr=[];var goodthings=[_0x814e[6],_0x814e[7]];var badthings=[_0x814e[8]];var neutralthings=[_0x814e[9]];var insults=[_0x814e[10],_0x814e[11],_0x814e[12]];var randomchance3=[1,1,1];var randomchance10=[1,2,3,4,5,6,7,8,9,10];if(readStorage(_0x814e[13])===null){writeStorage(_0x814e[13],0);setTimeout(function(){systemMessage(_0x814e[14])},1000);writeStorage(_0x814e[15],0)};function loadData(){data=readStorage(_0x814e[13]);return data}function loadFlux(){data=readStorage(_0x814e[15]);return data}commands[_0x814e[5]]( new Command(_0x814e[16],function(){if(loadData()>=10000){writeStorage(_0x814e[13],loadData()-10000);writeStorage(_0x814e[15],loadFlux()+1);systemMessage(_0x814e[17]+loadFlux()+_0x814e[18])}else {systemMessage(_0x814e[19]+loadData()+_0x814e[20]+loadData()+_0x814e[21])}}));commands[_0x814e[5]]( new Command(_0x814e[22],function(){if(justGotCoins===false){arr=[1,2,3,4,5,6,7,8,9,10];justGotCoins=true;setTimeout(function(){justGotCoins=false},60000);if(randomchance10[Math[_0x814e[2]](Math[_0x814e[1]]()*randomchance10[_0x814e[0]])]!=1){coins=arr[Math[_0x814e[2]](Math[_0x814e[1]]()*arr[_0x814e[0]])]}else {systemMessage(goodthings[Math[_0x814e[2]](Math[_0x814e[1]]()*goodthings[_0x814e[0]])]);coins=arr[Math[_0x814e[2]](Math[_0x814e[1]]()*arr[_0x814e[0]])]*100};writeStorage(_0x814e[13],loadData()+coins);systemMessage(_0x814e[23]+coins+_0x814e[24]+loadData()+_0x814e[25])}else {warningMessage(_0x814e[26])}}));commands[_0x814e[5]]( new Command(_0x814e[27],function(_0x37efx10){if(justGotCoins===false){if(loadData()-_0x37efx10>=0){justGotCoins=true;setTimeout(function(){justGotCoins=false},60000);num=Math[_0x814e[2]](Math[_0x814e[1]]()*randomchance3[_0x814e[0]]);if(num===0){message=goodthings[Math[_0x814e[2]](Math[_0x814e[1]]()*goodthings[_0x814e[0]])];systemMessage(message+_0x814e[28]+(_0x37efx10*2)+_0x814e[25]);coins=_0x37efx10*2};if(num==1){message=neutralthings[Math[_0x814e[2]](Math[_0x814e[1]]()*neutralthings[_0x814e[0]])];coins=_0x37efx10;systemMessage(message+_0x814e[28]+(coins)+_0x814e[25])};if(num==2){message=badthings[Math[_0x814e[2]](Math[_0x814e[1]]()*badthings[_0x814e[0]])];coins=_0x37efx10-_0x37efx10-_0x37efx10;systemMessage(message+_0x814e[29]+(_0x37efx10)+_0x814e[25])};if(coins>=0){flux=loadFlux();if(flux>0){msg=(coins*(flux+1));systemMessage(_0x814e[30]+msg+_0x814e[31]);writeStorage(_0x814e[13],loadData()+coins*(flux+1))}else {writeStorage(_0x814e[13],loadData()+coins)}}}else {warningMessage(_0x814e[32]+insults[Math[_0x814e[2]](Math[_0x814e[1]]()*insults[_0x814e[0]])]+_0x814e[33]);justGotCoins=false}}else {warningMessage(_0x814e[26])}}));commands[_0x814e[5]]( new Command(_0x814e[34],function(){sendMessage(_0x814e[35]+loadData()+_0x814e[36])}))
Obfuscated to prevent hacking infinite coins.
Commands:
/scoinget: Draw coins.
/scoininvest [amount]: Invest some coins into the trade market
/buyflux: Get a flux capacitor which permanently increases your profit by two in the trade market.
/scoingloat: Be a douche and brag about how many coins you have.
Posted
#14✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express YourselfI rewrote Super Coin Game to fix and improve some things
var _0x10c3=["","\x73","\x73\x74\x69\x6D\x65","\x54\x68\x65\x20\x62\x61\x6E\x6B\x20\x69\x6E\x74\x65\x72\x65\x73\x74\x20\x72\x61\x74\x65\x20\x69\x6E\x63\x72\x65\x61\x73\x65\x64\x21","\x53\x74\x75\x66\x66\x20\x68\x61\x70\x70\x65\x6E\x65\x64\x2E","\x59\x6F\x75\x20\x6D\x61\x64\x65\x20\x61\x20\x67\x6F\x6F\x64\x20\x69\x6E\x76\x65\x73\x74\x6D\x65\x6E\x74\x2E","\x54\x68\x65\x20\x74\x72\x61\x64\x65\x20\x6D\x61\x72\x6B\x65\x74\x20\x77\x61\x73\x20\x61\x74\x74\x61\x63\x6B\x65\x64\x20\x62\x79\x20\x74\x65\x72\x72\x6F\x72\x69\x73\x74\x73\x2E\x20\x54\x68\x65\x20\x68\x6F\x73\x70\x69\x74\x61\x6C\x20\x62\x69\x6C\x6C\x20\x63\x6F\x73\x74\x20\x61\x6C\x6C\x20\x74\x68\x65\x20\x63\x6F\x69\x6E\x73\x20\x79\x6F\x75\x20\x69\x6E\x76\x65\x73\x74\x65\x64\x2E","\x54\x72\x75\x6D\x70\x20\x75\x73\x65\x64\x20\x79\x6F\x75\x72\x20\x63\x6F\x69\x6E\x73\x20\x74\x6F\x20\x62\x75\x69\x6C\x64\x20\x61\x20\x77\x61\x6C\x6C\x2E","\x59\x6F\x75\x20\x72\x65\x61\x6C\x69\x7A\x65\x20\x74\x68\x61\x74\x20\x74\x68\x6F\x73\x65\x20\x77\x65\x72\x65\x20\x63\x68\x6F\x63\x6F\x6C\x61\x74\x65\x20\x63\x6F\x69\x6E\x73\x2E\x20\x41\x6E\x64\x20\x74\x68\x65\x79\x20\x6D\x65\x6C\x74\x65\x64\x21","\x42\x65\x66\x6F\x72\x65\x20\x79\x6F\x75\x20\x65\x6E\x74\x65\x72\x20\x74\x68\x65\x20\x74\x72\x61\x64\x65\x20\x6D\x61\x72\x6B\x65\x74\x2C\x20\x69\x74\x20\x62\x75\x72\x6E\x73\x20\x64\x6F\x77\x6E\x2E\x20\x59\x6F\x75\x20\x66\x69\x6E\x64\x20\x61\x20\x63\x6F\x69\x6E\x20\x69\x6E\x20\x74\x68\x65\x20\x77\x72\x65\x63\x6B\x61\x67\x65\x2E","\x54\x68\x65\x20\x74\x72\x61\x64\x65\x20\x6D\x61\x72\x6B\x65\x74\x20\x69\x73\x20\x63\x6C\x6F\x73\x65\x64\x20\x6F\x6E\x20\x54\x72\x69\x64\x61\x79\x2E\x20\x59\x6F\x75\x20\x66\x69\x6E\x64\x20\x61\x20\x63\x6F\x69\x6E\x20\x69\x6E\x20\x61\x20\x76\x65\x6E\x64\x69\x6E\x67\x20\x6D\x61\x63\x68\x69\x6E\x65\x2E","\x73\x63\x6F\x69\x6E","\x73\x66\x6C\x75\x78","\x49\x20\x73\x65\x65\x20\x74\x68\x69\x73\x20\x69\x73\x20\x79\x6F\x75\x72\x20\x66\x69\x72\x73\x74\x20\x74\x69\x6D\x65\x20\x69\x6E\x20\x74\x68\x65\x20\x53\x75\x70\x65\x72\x20\x43\x6F\x69\x6E\x20\x47\x61\x6D\x65\x20\x6F\x6E\x20\x74\x68\x69\x73\x20\x64\x65\x76\x69\x63\x65\x21\x20\x54\x79\x70\x65\x20\x2F\x73\x63\x6F\x69\x6E\x67\x65\x74\x20\x74\x6F\x20\x62\x65\x67\x69\x6E\x2E","\x62\x75\x79\x66\x6C\x75\x78","\x57\x6F\x77\x2C\x20\x6E\x69\x63\x65\x20\x6A\x6F\x62\x2C\x20\x73\x75\x63\x2D\x20\x45\x72\x72\x2C\x20\x70\x6C\x65\x61\x73\x75\x72\x65\x20\x64\x6F\x69\x6E\x67\x20\x62\x75\x73\x69\x6E\x65\x73\x73\x20\x77\x69\x74\x68\x20\x79\x6F\x75\x21\x20\x59\x6F\x75\x20\x68\x61\x76\x65\x20","\x20\x63\x61\x70\x61\x63\x69\x74\x6F\x72\x20","\x20\x6E\x6F\x77\x2C\x20\x69\x6E\x20\x63\x61\x73\x65\x20\x79\x6F\x75\x27\x72\x65\x20\x63\x75\x72\x69\x6F\x75\x73\x2E","\x4F\x6E\x6C\x79\x20","\x20\x63\x6F\x69\x6E","\x3F\x20\x59\x6F\x75\x20\x65\x78\x70\x65\x63\x74\x20\x74\x6F\x20\x67\x65\x74\x20\x61\x20\x46\x4C\x55\x58\x20\x43\x41\x50\x41\x43\x49\x54\x4F\x52\x20\x77\x69\x74\x68\x20","\x20\x43\x4F\x49\x4E\x28\x53\x29\x21\x3F","\x70\x75\x73\x68","\x73\x63\x6F\x69\x6E\x67\x65\x74","\x72\x61\x6E\x64\x6F\x6D","\x6C\x65\x6E\x67\x74\x68","\x59\x6F\x75\x20\x67\x6F\x74\x20","\x2E\x20\x59\x6F\x75\x20\x6E\x6F\x77\x20\x68\x61\x76\x65\x20","\x2E","\x62\x65\x20\x61\x20\x70\x61\x74\x69\x65\x6E\x74\x20\x70\x69\x63\x6B\x6C\x65","\x73\x63\x6F\x69\x6E\x69\x6E\x76\x65\x73\x74","\x20\x59\x6F\x75\x20\x67\x6F\x74\x20","\x20\x63\x6F\x69\x6E\x73\x2E","\x20\x59\x6F\x75\x20\x6C\x6F\x73\x74\x20","\x4F\x68\x2C\x20\x79\x6F\x75\x20\x73\x65\x65\x6D\x20\x74\x6F\x20\x68\x61\x76\x65\x20\x73\x6F\x6D\x65\x20\x63\x61\x70\x61\x63\x69\x74\x6F\x72\x73\x2E\x20\x48\x65\x72\x65\x2C\x20\x79\x6F\x75\x20\x67\x65\x74\x20","\x2E\x20\x69\x6E\x73\x74\x65\x61\x64\x2E","\x59\x6F\x75\x20\x64\x6F\x6E\x27\x74\x20\x68\x61\x76\x65\x20\x74\x68\x61\x74\x20\x6D\x61\x6E\x79\x20\x63\x6F\x69\x6E\x73\x2C\x20\x73\x69\x6C\x6C\x79\x21","\x59\x6F\x75\x20\x63\x61\x6E\x20\x6F\x6E\x6C\x79\x20\x61\x63\x74\x20\x65\x76\x65\x72\x79\x20\x6D\x69\x6E\x75\x74\x65\x21","\x73\x63\x6F\x69\x6E\x63\x68\x65\x63\x6B","\x59\x6F\x75\x20\x68\x61\x76\x65\x20","\x20\x63\x6F\x69\x6E\x28\x73\x29\x20\x61\x6E\x64\x20","\x20\x63\x61\x70\x61\x63\x69\x74\x6F\x72\x28\x73\x29\x20\x69\x6E\x20\x74\x68\x65\x20\x53\x75\x70\x65\x72\x20\x43\x6F\x69\x6E\x20\x47\x61\x6D\x65\x2E\x0A\x20\x54\x69\x72\x65\x64\x3A\x20"];function s(_0x96cdx2){if(_0x96cdx2==1){return _0x10c3[0]}else {return _0x10c3[1]}}writeStorage(_0x10c3[2],false);var goodthings=[_0x10c3[3],_0x10c3[4],_0x10c3[5]];var badthings=[_0x10c3[6],_0x10c3[7],_0x10c3[8]];var neutralthings=[_0x10c3[9],_0x10c3[10]];if(readStorage(_0x10c3[2])===null){writeStorage(_0x10c3[11],0);writeStorage(_0x10c3[12],0);writeStorage(_0x10c3[2],false);setTimeout(systemMessage(_0x10c3[13]),1000)};commands[_0x10c3[22]]( new Command(_0x10c3[14],function(){var _0x96cdx6=readStorage(_0x10c3[11]);var _0x96cdx7=readStorage(_0x10c3[12]);if(_0x96cdx6>=100*_0x96cdx7){writeStorage(_0x10c3[11],_0x96cdx6-100*(_0x96cdx7+1));writeStorage(_0x10c3[12],_0x96cdx7+1);systemMessage(_0x10c3[15]+(_0x96cdx7+1)+_0x10c3[16]+s(_0x96cdx7+1)+_0x10c3[17])}else {systemMessage(_0x10c3[18]+_0x96cdx6+_0x10c3[19]+s(_0x96cdx6)+_0x10c3[20]+_0x96cdx6+_0x10c3[21])}}));commands[_0x10c3[22]]( new Command(_0x10c3[23],function(){var _0x96cdx8=0;var _0x96cdx6=readStorage(_0x10c3[11]);if(readStorage(_0x10c3[2])===false){writeStorage(_0x10c3[2],true);setTimeout(function(){writeStorage(_0x10c3[2],false)},60000);if(Math[_0x10c3[24]]()>=0.1){_0x96cdx8=(Math[_0x10c3[24]]()*10+1|0)}else {systemMessage(goodthings[Math[_0x10c3[24]]()*goodthings[_0x10c3[25]]|0]);_0x96cdx8=(Math[_0x10c3[24]]()*10+1|0)*100};_0x96cdx6+=_0x96cdx8;writeStorage(_0x10c3[11],_0x96cdx6);systemMessage(_0x10c3[26]+_0x96cdx8+_0x10c3[19]+s(_0x96cdx8)+_0x10c3[27]+_0x96cdx6+_0x10c3[19]+s(_0x96cdx6)+_0x10c3[28])}else {warningMessage(_0x10c3[29])}}));commands[_0x10c3[22]]( new Command(_0x10c3[30],function(_0x96cdx9){var _0x96cdxa=0;var _0x96cdx6=readStorage(_0x10c3[11]);var _0x96cdx7=readStorage(_0x10c3[12]);_0x96cdx9=parseInt(_0x96cdx9);if(readStorage(_0x10c3[2])===false){if(_0x96cdx9<=_0x96cdx6){writeStorage(_0x10c3[2],true);setTimeout(function(){writeStorage(_0x10c3[2],false)},60000);switch(Math[_0x10c3[24]]()*3|0){case 0:_0x96cdxa=_0x96cdx9;systemMessage(goodthings[Math[_0x10c3[24]]()*goodthings[_0x10c3[25]]|0]+_0x10c3[31]+(_0x96cdx9*2)+_0x10c3[32]);break;case 1:_0x96cdxa=1;systemMessage(neutralthings[Math[_0x10c3[24]]()*neutralthings[_0x10c3[25]]|0]);break;case 2:_0x96cdxa= -_0x96cdx9;systemMessage(badthings[Math[_0x10c3[24]]()*badthings[_0x10c3[25]]|0]+_0x10c3[33]+_0x96cdx9+_0x10c3[19]+s(_0x96cdx9)+_0x10c3[28])};if(_0x96cdx7&&(_0x96cdxa>=0)){if(!_0x96cdxa){_0x96cdxa=_0x96cdx9};_0x96cdxa=_0x96cdxa*_0x96cdx7;systemMessage(_0x10c3[34]+_0x96cdxa+_0x10c3[19]+s(_0x96cdxa)+_0x10c3[35])};writeStorage(_0x10c3[11],_0x96cdx6+_0x96cdxa)}else {warningMessage(_0x10c3[36])}}else {warningMessage(_0x10c3[37])}}));commands[_0x10c3[22]]( new Command(_0x10c3[38],function(){systemMessage(_0x10c3[39]+readStorage(_0x10c3[11])+_0x10c3[40]+readStorage(_0x10c3[12])+_0x10c3[41]+readStorage(_0x10c3[2]))}))
added /scoincheck
IMPROVED
Posted
Edited
by 12Me21
#15✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfwindow.onbeforeunload=function(){return'.';};
Posted
#16✎ 32ChemicaleMeme encryption
The key is 'meme'
commands.push(new Command("um",function(e){str=e,re=/meme?/gi,newstr=str.replace(re,"e?"),str=newstr,re=/meme?/gi,newstr=str.replace(re,"a"),str=newstr,re=/meme?/gi,newstr=str.replace(re,"i"),str=newstr,re=/meme?/gi,newstr=str.replace(re,"o"),str=newstr,re=/meme?/gi,newstr=str.replace(re,"u"),str=newstr,systemMessage("The hidden text was: "+str);})),commands.push(new Command("m",function(e){str=e,re=/e/gi,newstr=str.replace(re,"meme?"),str=newstr,re=/a/gi,newstr=str.replace(re,"meme?"),str=newstr,re=/i/gi,newstr=str.replace(re,"meme?"),str=newstr,re=/o/gi,newstr=str.replace(re,"meme?"),str=newstr,re=/u/gi,newstr=str.replace(re,"meme?"),str=newstr,systemMessage("Your memeified text is: "+str);}));
/m (text) - encode memeified text
/um (memeified text) Return text to it's original state
It's great if no one else knows the key
Because it's always 'meme'
And I'm displaying it in public
.....
woo
Satisfaction not guaranteed
Posted
Edited
by Chemicale
#17✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourselfvar f=new Date();
systemMessage("Date: "+f.toLocaleDateString()+"\nWelcome to the SmileBASIC Source chat, "+username);
Posted
#18✎ 10312Me21Forum ModeratorNight PersonI like the quiet night and sleep late.Express Yourself
dump of useless commands (one for now):
fuck(bees);
dunno if it works but whatever
nope..
Posted
#19✎ 73ElzoBroI think it would be cool if someone made a ChatJS Script that easily let you change the Colors of the chat interface. Like you could change your message box from Red to Cyan or the user list from Grey to Green!
If someone could make this I'd gladly use it! Thank you!
Posted
#20✎ 4atm959I made a cool thing that lets you set a favorite game, a game you are currently playing, and your favorite game console.
Code: http://pastebin.com/Mev5Kuf7Commands:
/games <option> <action> [gameName]
option - CAN BE:
favorite - OPTIONS FOR YOUR FAVORITE GAME
current - OPTIONS FOR THE GAME YOU ARE CURRENTLY PLAYING
console - OPTIONS FOR YOUR FAVORITE GAME CONSOLE
action - CAN BE:
FOR favorite:
set - SET YOUR FAVORITE GAME
tell - TELL EVERYONE YOUR FAVORITE GAME
recall - TELL YOURSELF THE GAME YOU SET AS FAVORITE
FOR current:
set - SET THE GAME YOU ARE CURRENTLY PLAYING
clear - CLEAR OUT THE GAME YOU ARE PLAYING
tell - TELL EVERYONE THE GAME YOU ARE PLAYING
recall - TELL YOURSELF THE GAME YOU ARE PLAYING
FOR console:
set - SET YOUR FAVORITE GAME CONSOLE
tell - TELL EVERYONE YOUR FAVORITE GAME CONSOLE
recall - TELL YOURSELF YOUR FAVORITE CONSOLE
gameName - NAME OF GAME (SPACES ALLOWED) IF action IS set
Posted
Edited
by atm959