Top

Byond Mini Character Maker


BYOND Code

Please Register to submit score.
Bookmark and Share
Average Score  4.0 (of 1 scores)
Date Added  May 23, 2009
Last Updated  May 23, 2009
Tags  byond 

Description

This Is a Small Thing for making basic stats of a character on byond

Grab the Code

mob/var
	Name=""
        Town=""
        Type=""
        Sex=""
        HP=0
        MHP=100
mob/Login()
		alert("Welcome")
		var/name = input("","Name") as text
		usr.Name="[html_encode(name)]"
                usr.Start()
mob/verb/Start()
			switch(input("What Do You Want To Be") in list("Warrior","Magic User"))
                        	if("Warrior")
					usr.Type="Warrior"
                                        usr.MHP=100
					usr.Town="Warrior City"
                                        usr.Sex="Unknown"
                        	if(Magic User")
					usr.Type="Magic User"
                                        usr.MHP=100
					usr.Town="Magic City"
                                        usr.Sex="Unknown"

Comments

  (0)  RSS

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  

Bottom