viewing paste Unknown #6893 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12
BUILDIN(leaveparty)
{
    TBL_PC* sd = script_rid2sd(st);
    
    if( sd == NULL ) {
        script_pushint(st, 0);
        return true;
    }
    
    script_pushint(st, party->leave(sd));
    return true;
}
Viewed 712 times, submitted by Guest.