ID:161020
 
Ok im in the middle of making a great login for my game but there is one thing I dont knowim making houses in my game and so far i have new game load game and name you desire and i have the 4 houses done and now I would like it to where if you click a certain house that a screen of icons will pop up like for fighter mage and im not that good of a prorammer i wouldnt even call me that yet but how do i get it to where when you click a house the picture of all the icons will show up and i want them to have the click verb to where you click one and that will be what you select plz help me
You might have to convert the .dmi icons of the houses to a picture format(like .bmp or .jpeg). Because then you could do:
turf/class1 //Defines the Class 1, change it to Mage or whatever
invisibility = 1 //Makes the class invisible

turf/house1 //Defines the first house
icon = 'house1.bmp' //The icon
Click() //When they click
usr.showclasses1() //Activate the proc "showclasses1"

mob
proc
showclasses1() //The proc name
src.see_invisible = 1 //Lets the user see anything with the invisibility 1.


Hope this helps!
In response to Hi1
Why would you have to turn it to an other format, Click() works on all atoms.
In response to Giantpandaman
He only has to convert if he doesn't know how to multi-tile...which I suspect he doesn't because he said he's not a good programmer...