ID:268409
 
On chossing a character how would you make it where you can choose from more than 1 character .
Depends on your character choosing code.
Contract Jack wrote:
On chossing a character how would you make it where you can choose from more than 1 character .

Not sure if this is what you want,

var/a = input("What character will you be?")in list("Warrior","Knight","Wizard","Mage")
if(a=="Warrior")//and so on
//you know the drill =p

In response to DeathAwaitsU
I am just wanting a simple code for chossing from 2 different characters like UNITY Spy ( good )or H.A.R.M. Spy (Evil) . I looked at some of the tutorals but they only had like

mob
icon = 'player.dmi' ( 1 character )
In response to Buzzyboy
I'll try it
In response to Contract Jack
mob
Login()
switch(input("What do you want to be?","Choose Your Character") in list("Good Spy","Evil Spy"))
if("Good Spy")
usr.icon = 'goodspy.dmi'
else
usr.icon = 'evilspy.dmi'


Thats one inefficient way of doing it.
In response to DeathAwaitsU
I know of a good demo for that. Search "class" in the search bar, and it's the first demo on the list. (the one by vortezz)