1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
addhook("say","buildings") function around(id,txt) if txt == "!around" then if (player(id,"money")>14999) then parse("spawnobject 8 "..(player(id,"tilex")+1).." "..player(id,"tiley")+1).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 8 "..(player(id,"tilex")+1).." "..player(id,"tiley")-1).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 8 "..(player(id,"tilex")-1).." "..player(id,"tiley")+1).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 8 "..(player(id,"tilex")-1).." "..player(id,"tiley")-1).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 6 "..(player(id,"tilex")+1).." "..player(id,"tiley")+0).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 6 "..(player(id,"tilex")+0).." "..player(id,"tiley")+1).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 6 "..(player(id,"tilex")-1).." "..player(id,"tiley")+0).." 0 0 "..player(id,"team").." "..id) 	 parse("spawnobject 6 "..(player(id,"tilex")+0).." "..player(id,"tiley")-1).." 0 0 "..player(id,"team").." "..id) 	 parse("setmoney "..id.." "..player(id,"money")-15000) 	 end end
Error : unexpected simbol near ".." in 5th line
I don't see wrong simbols...