1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
script=start
	on:start {
		local $sch, $text;
	}
	on:use {
		if($sch==0){
			add "Du kannst etwas auf das Schild schreiben, wenn du einen Bleistift hast.";
			msgbox "Schild";
			button 0,"Draufschreiben","4","schreib";
			button 1,"Schließen","3","closemenu;";
		}else{
			msg "$text",1;
		}
	}
	on:schreib {
		if (playergotitem(456)>=1){
			$sch++;
			$text=inputwin ("Text",1);
			closemenu;
		}else{
			msg "Du brauchst einen Bleistift dazu",3;
			closemenu;
		}
	}
script=end