mob/verb/RandomSaying()
var/partone1 = "Your mama's"
var/partone2 = "You're"
var/parttwo3 = "so fat"
var/parttwo4 = "so stupid"
var/partthree5 = "it's not even funny!"
var/partthree6 = "I almost feel sorry for you!"
var/PartOne
var/PartTwo
var/PartThree
PartOne = rand("[partone1]","[partone2]")
PartTwo = rand("[parttwo3]","[parttwo4]")
PartThree = rand("[partthree5]","[partthree6]")
usr<<"This is what the random message was:<br><br>[PartOne] [PartTwo] [PartThree]<br><br>:)<br><br>"
Problem description:
That's what I have, but in the game, all that comes up is:
This is what the random message was:
0 0 0
:)
How do I make it so it shows the message, not 0 0 0?