viewing paste Unknown #53381 | Athena

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 23 24 25
prontera,82,97,5    script  NPC 1_F_MARIA,{
if(getgmlevel() >= 40) {
mes "Input Players";
        while(.@players < 2 || .@players > 20) {
            input .@players;
            if(!.@players)
            end;
        }
        next;
mes "Input Round/s";
        while(.@rounds < 1 || .@rounds > 5) {
            input .@rounds;
            if(!.@rounds)
                end;
        }
        .partysize = .@players;
        .winningscore = .@rounds;
        .active = true;
        end;
    }   
    if(!.active) {
        message strcharinfo(PC_NAME),"TheEvent is not active.";
        end;
    }
    goto L_dialog;
Viewed 446 times, submitted by Guest.