repo.or.cz
/
ryzomcore.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Resolve "Toggle Free Look with Hotkey"
[ryzomcore.git]
/
ryzom
/
server
/
src
/
ai_service
/
test_ai_script.txt
blob
0ac2953ea4921a22a76afea8f16dc80090feff74
1
// This file is used to test the compiler error returns.
2
spawnAll(;
3
toto.spawnAll(;
4
spawnAll);
5
toto.spawnAll);
6
toto=(1+1;
7
toto=1+1);
8
toto+=(1+1;
9
toto/=1+1);
10
toto=(1*1;
11
toto=1*1);
12
toto=(1*(1-2);
13
toto=1);
14
spawnAll();
15
spawnAll();
16
spawnAll();
17
toto.spawnAll();
18
spawnAll(;
19
()newNpcChildGroup($group,$state_machine_boss $spawnzone);
20
()newNpcChildGroup($group,$state_machine_boss,$spawnzone;
21
()newNpcChildGroup $group,$state_machine_boss,$spawnzone);
22
()setEvent("toto");
23
()setEvent(1+2);
24
if (0 == "toto")
25
toto = 2;
26
if (0 == "toto"
27
{
28
toto = 2;
29
}
30
toto = "titi" - 2;
31
toto = 2 - "tutu";
32
toto = "titi" * 2;
33
toto = 2 / "tutu";
34
switch ("toto")
35
{
36
case 0:
37
toto =0;
38
case "tutu":
39
toto =0;
40
}
41
switch (2)
42
{
43
case 0:
44
toto =0;
45
case "tutu":
46
toto =0;
47
}