I have my character select as a proc. Which, is to make sure when I double click the title screen it makes it with the character selection but I got these four errors all the same thing.
characterselect.dm:7::warning: empty switch statement
characterselect.dm:7:if :warning: if statement has no effect
characterselect.dm:12::warning: empty switch statement
characterselect.dm:15::warning: empty switch statement
#include <deadron/basecamp> #include <deadron/characterhandling> client/base_num_characters_allowed = 1
proc/select() switch(input("Select a choice:")in list("Start","Continue")) if("Start") switch(input("If you have selected this choice, your old character will be deleted but, if you have no character you have noithing to worry about!")in list("Yes")) if("Yes") usr.name = input("What is your name?")as text switch(input("On the island of Isolina.. lays a fate unknown by everyone else except the people that were on the mainland of Isolina before it got turned into an island. Choose your fate!")in list("Just a character")) if ("Just a character") usr.name = "[usr.name]" switch(input("What is your class?") in list("Soldier")) if("Soldier") world<<"[usr.name] a Soldier has entered!"
|