Byond Mini Character Maker

By Mirccoder on May 23, 2009

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

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

Sign in to comment.
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.