viewing paste Unknown #17142 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
-   script  ABCD    -1,{
mes "1st Line";
mes "Something Else";
next;
mes "4th Line";
mes "Something Else2";
.........
} BEFORE
 
-->>
 
-   script  ABCD    -1,{
getmessages(1);
next;
getmessages(2);
}
 
function    getmessages {
    SOME Query
    mes with Query Result
    return;
}
Viewed 574 times, submitted by Guest.