ID:167733
 
How do you Make text boxs appear? and also just when u login.
In response to Artemio
mob
Login()
world << "<b><font color=blue>[usr]</font color=blue></b> has come to KirbyLand!">>
input(<< "Kirby once had a wonderful idea!">>)
input(<< "The Kirbies of KirbyLand should have a maze!")

these are the errors it gives me now:
codes.dm:7:error: missing expression
codes.dm:8:error: missing left-hand argument to <<.
codes.dm:8:error: missing expression
codes.dm:8:error: ): expected }
codes.dm:7:error: location of top-most unmatched {

KirbyLand.dmb - 7 errors, 0 warnings (double-click on an error to jump to it)
In response to Artemio
and now it says
mob
icon = 'kirby.dmi'
Login()
loc = locate(1,12,1)
..()

codes.dm:11:error: missing expression
In response to Artemio
C'mon!!!! HELP MEEE!!!
In response to FireBallHatePeace
Oh boy. You are using output symbols and input wrong. This is how that segment should look:

mob
Login()
world << "<b><font color=blue>[usr]</font color=blue></b> has come to KirbyLand!"
alert("Kirby once had a wonderful idea!")
alert("The Kirbies of KirbyLand should have a maze!")
In response to FireBallHatePeace
Oh come on, it was 8 minutes from your last post when you posted that. If you didn't notice, this is a forum, not a real-time chatroom. If you look in the reference link I gave you, it gives you an example and explination of input().

If you haven't, I suggest you read the DM guide.
In response to Artemio
Thing is, if he just wants text, he should use alert, as input gives a line to type automatically.