|
There's graphics made for an interactive house piano and password blocks, it's just that somebody needs to script them.
|
Password blocks? that has to be the easiest thing to script in all of graal. I'm Suprised they haven't done it.
Let's say the player sets the password with a gui and it sets "this.password".
No clue what their api for the gui/furniture is so I'll just show this
PHP Code:
//#CLIENTSIDE
function onplayerchats()
{
if(player.chat == this.password)
{
hide();
sleep(2);
show();
}
}