viewing paste Unknown #8494 | C

Posted on the
1 2 3 4 5 6 7 8
BUILDIN(getcastlename)
{
    const char* mapname = mapindex_getmapname(script_getstr(st,2),NULL);
    struct guild_castle* gc = guild->mapname2gc(mapname);
    const char* name = (gc) ? gc->castle_name : "";
    script_pushstrcopy(st,name);
    return true;
}
Viewed 683 times, submitted by Guest.