Post Tue Apr 02, 2013 2:40 pm

boingloings.bot

well uh... have a useless bot.


  Code:
----------------------------
--------boingloings.--------
----------------------------
------ By Little_Apple------
----------------------------
function main()
    Timer:scheduleOnce(superModel, 2000)
end


function superModel()
    globalMsg("Look, a supermodel!")
    Timer:scheduleOnce(hoverBoard, 2000)
end


function hoverBoard()
    globalMsg("Look, a hoverboard!")
    Timer:scheduleOnce(apocalypse, 2000)
end


function apocalypse()
    globalMsg("Look, the apocalypse!") 
    Timer:scheduleOnce(someoneGot, 2000)
end


function someoneGot()
    globalMsg("Someone got hit in the boingloings!")
    Timer:scheduleOnce(hitInThe, 2000)
end


function hitInThe()
    globalMsg("Hit in the boingloings!")
    Timer:scheduleRepeating(boingloings, 2500)
end

function boingloings()
    globalMsg("Boingloings.")
end



function getName()
    return( "Ice King" )
end
Hee-ho!