Skip to content

Instantly share code, notes, and snippets.

@un1versal
Created September 13, 2016 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save un1versal/12c102230d4c5774c10304527c642047 to your computer and use it in GitHub Desktop.
Save un1versal/12c102230d4c5774c10304527c642047 to your computer and use it in GitHub Desktop.
# Sascii - KVIrc alias script © un1versal 2016
# License: GPLv2
%name = "Sascii"
%version = "v1.0.0"
%authcop = "© un1versal 2016 GPLv2"
%ascii01 = "><(((('>"
%ascii02 = "╭∩╮ (òÓ,) ╭∩╮"
%ascii03 = "(•̪●)==ε/̵͇̿​̿/’̿’̿ ̿ ̿̿ ` >~∑≥_≤)"
%ascii04 = ̿"'¯̿̿'\̵͇̿̿\з=(◕_◕)=ε/̵͇̿̿/'̿'̿ "
%ascii05 = "( ◕_◕)O*¯`·.¸.·´¯`°Q(◕_◕ )"
%ascii06 = "@)}-,-'----"
%ascii07 = "|──▇▇▇▇═──"
%ascii08 = "❚█══════█❚"
%ascii09 = "ʕ•ᴥ•ʔ"
%ascii10 = "█▬█ █▄█ █▬█"
%ascii11 = "║▌║█║▌│║▌║▌█"
%ascii12 = "(òÓ,)_\,,/"
%ascii13 = "((̲̅ ̲̅(̲̅C̲̅r̲̅a̲̅y̲̅o̲̅l̲̲̅̅a̲̅( ̲̅((>"
%ascii14 = "(::[]::)"
%ascii15 = "█▬█ █ ▀█▀"
%ascii16 = "[̲̅€̅(̲̅ιοο̲̅)̲̅€̅]"
%ascii17 = "████████̅██45%̅_̅_̅_̅_̅_̅_̅_̅_▌"
%ascii18 = "—═デ┳︻"
%ascii19 = "D☺R"
%ascii20 = "¸¸♬·¯·♩¸¸♪·¯·♫¸¸Happy Birthday To You¸¸♬·¯·♩¸¸♪·¯·♫¸¸"
%ascii21 = "(_̅_̅((_̅_̅_̅_̅_̅_̅_̅_̅_̅()ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็ ็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้ ้้้้้้้็็็็็้้้้้็็็็็ "
switch($0)
{
case(fish):
{
say %ascii01
break;
}
case(finger):
{
say %ascii02
break;
}
case(shootu):
{
say %ascii03
break;
}
case(gunslinger):
{
say %ascii04
break;
}
case(pingpong):
{
say %ascii05
break;
}
case(rose):
{
say %ascii06
break;
}
case(seringe):
{
say %ascii07
break;
}
case(dumbbell):
{
say %ascii08
break;
}
case(bear):
{
say %ascii09
break;
}
case(huh):
{
say %ascii10
break;
}
case(barcode):
{
say %ascii11
break;
}
case(hellyea):
{
say %ascii12
break;
}
case(crayon):
{
say %ascii13
break;
}
case(plaster):
{
say %ascii14
break;
}
case(hit):
{
say %ascii15
break;
}
case(money):
{
say %ascii16
break;
}
case(45%):
{
say %ascii17
break;
}
case(rifle):
{
say %ascii18
break;
}
case(dor):
{
say %ascii19
break;
}
case(happybday):
{
say %ascii20
break;
}
case(ciggy):
{
say %ascii21
break;
}
case(uninstall):
{
if ($window($tr(Alias Editor)) != "0")
{
echo $tr("The Alias Editor window is open...")
echo $tr("Cannot process uninstall request while editor is open, Closing it order to proceed...")
timer -s (uninstall,2000)
window.close $window($tr(Alias Editor))
echo $tr("Uninstalling alias(ii)")
alias(ii){}
echo $tr("Uninstallation complete!")
break;
}
else
{
echo $tr("Uninstalling alias(ii)")
alias(ii){}
echo $tr("Uninstallation complete!")
break;
}
}
case("")
{
echo $tr("Usage:")
echo " /ii fish $b":"$b %ascii01"
echo " /ii finger $b":"$b %ascii02"
echo " /ii shootu $b":"$b %ascii03"
echo " /ii gunslinger $b":"$b %ascii04"
echo " /ii pingpong $b":"$b %ascii05"
echo " /ii rose $b":"$b %ascii06"
echo " /ii seringe $b":"$b %ascii07"
echo " /ii dumbbell $b":"$b %ascii08"
echo " /ii bear $b":"$b %ascii09"
echo " /ii huh $b":"$b %ascii10"
echo " /ii barcode $b":"$b %ascii11"
echo " /ii hellyea $b":"$b %ascii12"
echo " /ii crayon $b":"$b %ascii13"
echo " /ii plaster $b":"$b %ascii14"
echo " /ii hit $b":"$b %ascii15"
echo " /ii money $b":"$b %ascii16"
echo " /ii 45% $b":"$b %ascii17"
echo " /ii rifle $b":"$b %ascii18"
echo " /ii dor $b":"$b %ascii19"
echo " /ii happybday $b":"$b %ascii20"
echo " /ii ciggy $b":"$b %ascii21"
echo \n
echo " /ii <uninstall> $b":"$b This uninstalls the alias(ii){} from KVIrc."
echo \n
echo %name %version - %authcop
halt;
}
default:
echo $tr("Command not defined, type $b/ii$b for usage information!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment