summaryrefslogtreecommitdiff
path: root/doc/Item Inputs and Menus.txt
blob: a715964a6fdf726562052da07bc847c4223f4b9e (plain) (blame)
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
============================================================================================================
Item Menus and Inputs
============================================================================================================

How to implement -
1. Create an NPC with the desired script as an event.
2. Add 'doevent "npcname::eventname";' to your item script.

Example:

-	script	validation_sys	-1,{
OnValidate:
	mes "Please type: I am validated.";
	input @validate$;
	next;
	if(@validate$ == "I am validated"){
		mes "You are validated";
	}else{
		mes "You are not";
	}
	close;
}

501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ doevent "validation_sys::OnValidate"; },{},{}