Those are mostly requests.
Q: Is it possible for a player to have over 15 hearts?
A: Yes, its possible.
Request: A door that takes the key when you use it and a guy that gives you the key!
Script:
//==========Guy that gives you the key==========
//Start code
if (!haskey) {
if (playertouchsme) {
set haskey;
}
else hide;
}
//End code
//==========Door That takes key==========
//Start code
if (playertouchsme && haskey) {
unset haskey;
say2 Haha! Sucker! You#bcan't get in! Hahahaha!;
setplayerprop #c, ARRRRRRGGGGGGHHHHHH!!!!!!!!!!!;
}
//End code