In response to Strange Kidd
I would use an easier AFK verb,like this:

mob/verb/AFK()
var/last_x = src.x
var/last_y = src.y
var/last_z = src.z
src.loc = locate(null)
world <<"[src] is AFK!"
alert("You are AFK!",,"Back From AFK!"
src.loc = locate(last_x,last_y,last_z)
world <<"[src] is back from AFK!"


-Kappa the Imp
In response to Loduwijk
mob/Login()
if("Super Saiyan"in src.name)
src <<"GET OUT DBZER!"
del(src)
else
..()
mob/verb/Ask_To_Be_a_GM()
src <<"Get out of here n00b!"
del(src)

obj/Sword
icon = 'Sword.dmi'
verb/PickUp()
Move(usr)
verb/Drop()
src.loc = locate(usr.x,usr.y,usr.z)
mob/Stat()
statpanel("Inventory",contents)

mob
var
muted = 0
mob/verb/Mute(mob/M as mob in world)
if(!M.muted)
M.muted = 1
else
M.muted = 0
mob/verb/Say(msg as text)
if(findtext(T,"Can I be a GM?"))
alert("NO!")
del(src)
if(src.muted)
src <<"You are muted!"
return
else
world <<"[src]: [msg]"

mob/verb/Logout()
src.Logout()

mob/verb/Logbackin()
src.Login()

mob/verb/Close_Server()
world <<"<font color=red>SERVER CLOSING IN 10 SECONDS!</font>"
sleep(100)
del(src)

mob/verb/Reboot()
world <<"REBOOTING!"
world.Reboot()

mob/verb/Who()
var/mob/M
for(M in world)
if(!M.key) continue
else src <<"[M] (Key = [M.key])"

mob/verb/Change_Icon(I as icon)
src.icon = I

mob/verb/SSJ()
alert("NO DBZER!")
del(src)


Lots of useless codes!

-Kappa the Imp
In response to Rcet
Rcet wrote:
> mob
> verb
> Start_Alot_Of_ripoffs()
> usr.name = "Dracon"
> world << "[usr]: Im going to give my code to someone"
> world << "[usr] starts the great BYOND massacre"



You know, I have feelings too =S *starts to
tear from the eye, then cackles insanely and falls
over*

Also, visit my site: http://ihatesquirrels.cjb.net

Also, also, Dracon is starting to feel a little on the crazy side.......
In response to Nadrew

mob/verb/Get_source()
usr << "This game isn't Dracon's, sorry."


And you feegs wonder why I spammed the forums...
In response to Dracon
I don't think letting source code get out to the public gives you the right to spam, but I'd rather not start an issue over it.
In response to Foomer
Yeah, I should probably just shut up, eh? =S I dont feel so well, I should probably lie down................
mob/verb/Nothing()
In response to Kappa the Imp
mob/verb/PainInTheAss()
set name = "Are you a pain in the ass?"
switch (alert("Well, are you or are you not a pain in the ass?","Yes","No"))
if("Yes")
usr << "Thank you for admitting that you're a pain in the ass"
world << "[usr] admits to being a pain in the ass!"
if("No")
usr << "You're such a moron...Big headed sod thinking you're not a pain in the ass!"
world << "[usr] thinks he isnt a pain in the ass...Well to be honest he is worse than a pain in the ass for not admitting to it...HAHAHA! -- No he goes for lying --"
del(src)


Useless but fun ^_^

Lee

Page: 1 2