ID:144003
 
Code:
mob/Login()
if (src.key == Ty 1)
src << "Welcome back Ty. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == Vee)
src << "Welcome back Vee. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == Demon x92)
src << "Welcome back Shadow. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == Ynohtna)
src << "Welcome back Exertion. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB.
else
src << "Please follow these rules: 1) No excessive cursing. 2) No disrespect to either GM's or players. 3) No spawn or academy killing! 4) No AFK or EZ training. 5) No Multi-Keying!


Problem description: When I go to compile the error is "loginmsg.dm:2:error: 1: missing comma ',' or right-paren ')'" And I don't know what to do to fix this.


You're missing two right side quote marks...
In response to Bobthehobo
In other words, Ty 1 means absolutely nothing to the compiler.
Unless it's a definition or variable, you must put text in a text string.

mob/Login()
if (src.key == "Ty 1")
src << "Welcome back Ty. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == "Vee")
src << "Welcome back Vee. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == "Demon x92")
src << "Welcome back Shadow. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB."
if (src.key == "Ynohtna")
src << "Welcome back Exertion. Please read the rules for GM's, you must follow them. The rules are: 1) Answer questions that are asked, but not if spammed. 2) Do not give out money, items, or edit anyone. 3) Follow the rules given to regular players on the HUB.
else
src << "Please follow these rules: 1) No excessive cursing. 2) No disrespect to either GM's or players. 3) No spawn or academy killing! 4) No AFK or EZ training. 5) No Multi-Keying!
In response to Keeth
Also that else statement shouldn't be there, it will only not be displayed if you are Ynohtna...

-KirbyAllStar