Endless Paradigm

Full Version: Kixtart scripts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Kixtart is nice. This is what I made in a few minutes, a fool-proof menu with confirmation! Noone can possibly mess this up.

cls
:choseinsttype
'Chose your installation'
?'1. Full'
?'2. Update'
?'3. Advanced'
get $in_insttype

$choice = 0
Select case $in_insttype = 'f' Or $in_insttype = '1'
$choice = 1
$insttype = 'F'
??'Full?'
case $in_insttype = 'u' Or $in_insttype = '2'
$choice = 1
$insttype = 'U'
??'Update?'
case $in_insttype = 'a' Or $in_insttype = '3'
$choice = 1
$insttype = 'A'
??'Advanced?'
endselect

if $choice <> 1
cls
'Error.'?
goto choseinsttype
endif


?'Y/N:' get $confirm

$choice = 0
select case $confirm = 'n'
cls
'Retry.'?
goto choseinsttype
case $confirm = 'y'
$choice = 1
goto insttypeok
endselect

if $choice <> 1
cls
'Retry.'?
goto choseinsttype
endif

:insttypeok
???
$insttype
exit


what a mess code though! that's the cool thing about kixtart. it just works no matter how ugly you make it :P
cool i don't know what it is but it seems like a good thing if it works no matter how you make it
O_o

What do you have to use KiXtart for?
what......is....kixtart????????????
sticky Wrote:what......is....kixtart????????????
Some scripting language apparently...

kixtart
I use it for things where batch files just won't do but i don't feel like making exes...
* ZiNgA BuRgA uses Visual Basic :) (it's interpreted, so no EXE compiling is required)
you mean VBS? i considered that but i guess ppl can think its malicious. i never open vbs files unless i know what they do (usually i just open them and find out)

i know VB, but don't feel like the spoon especially when textmode is sufficient
uhuh
that look soo confusing i only know how to html ( a lil) i mostly use dreamweaver
Pages: 1 2
Reference URL's