Locked: Title screen help in Developer Help
|
|
I am new i would like to know how to make a title screen ive tried to look up tutorials but couldnt find any. please help ooh and one other question. When i displayed text on screen it would say hi who ever quest it was but the screen would just be blank yet but then when i took out the Login() it wouldnt display the text but you could see the map?
|
It appears that you're new to programming with BYOND, so I would suggest that you take a look at the guide and other beginner tutorials so that you can get a stronger grasp of the language in general.
As to your specific question, the general method for creating a title screen is to assign a background image as a turf's icon, place that turf on the map, create several "button" objects with Click() processes defined, place those objects over the turf, and then use locate() to move players during Login() to your title screen area.
For your second problem, you probably forgot to place the player on the map. By default, Login() will do this for you. However, if you override Login() and don't call the default behavior (such as by using ..()), you will need to manually set their loc with locate().