ist auch ein fehler im starterpack,
schau im globalscript ( bei mir auf zeile 1001 ) , dort steht die function:
function any_click_walk_look (int x, int y, int dir, string lookat){
daraus machst du
function any_click_walk_look (int x, int y, int dir, const string lookat){
dasselbe im scriptheader (bei mir auf zeile 92)
aus
import function any_click_walk_look (int x, int y, int dir, string lookat);
machst du
import function any_click_walk_look (int x, int y, int dir, const string lookat);
dann müsste die fehlermeldung weg sein.
das wird übrigens bei allen funktionen der fall sein, die string statt const string verwenden, vermute ich mal.
aber da die fast niemand verwendet fällt es normalerweise keinem auf.