blob: 2ad5cbbe951cd561d4b72ab58fa5afb16380842b (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<context_menu
layout="topleft"
name="Land Pie">
<menu_item_call
label="About Land"
name="Place Information...">
<menu_item_call.on_click
function="Floater.Show"
parameter="about_land" />
</menu_item_call>
<!-- <menu_item_call
label="Go Here"
name="Go Here">
<menu_item_call.on_click
function="GoToObject" />
</menu_item_call>-->
<menu_item_call
label="Sit Here"
name="Sit Here">
<menu_item_call.on_click
function="Land.Sit" />
</menu_item_call>
<menu_item_separator
layout="topleft" />
<menu_item_call
enabled="false"
label="Buy This Land"
name="Land Buy">
<menu_item_call.on_click
function="Land.Buy" />
<menu_item_call.on_enable
function="World.EnableBuyLand" />
</menu_item_call>
<menu_item_call
enabled="false"
label="Buy Pass"
name="Land Buy Pass">
<menu_item_call.on_click
function="Land.BuyPass" />
<menu_item_call.on_enable
function="Land.EnableBuyPass" />
</menu_item_call>
<menu_item_separator
layout="topleft" />
<menu_item_call
enabled="false"
label="Build"
name="Create">
<menu_item_call.on_click
function="Land.Build" />
<menu_item_call.on_enable
function="EnableEdit" />
</menu_item_call>
<menu_item_call
enabled="false"
label="Edit Terrain"
name="Edit Terrain">
<menu_item_call.on_click
function="Land.Edit" />
<menu_item_call.on_enable
function="EnableEdit" />
</menu_item_call>
<menu_item_separator
layout="topleft" />
<menu_item_call
enabled="false"
label="Block Particle Owner"
name="Mute Particle">
<menu_item_call.on_click
function="Particle.Mute" />
<menu_item_call.on_enable
function="EnableMuteParticle" />
</menu_item_call>
</context_menu>
|