viewing paste Unknown #21715 | 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 26 27 28 29 30 31 32 33
new_1-1,58,112,3    script  My House2   4_F_KHELLISIA,{ 
    for (.@i = 0; .@i < 2; .@i++){
        mes "Creating Instance";
        .@instance = instance_create("MY Instance", getcharid(3) , IOT_CHAR);
        if( .@instance == -1 ) {
            mes "[^999900My House^000000]";
            mes "There is already a House registered for your group.";
            close;
        }
        else if( .@instance < 0 ) {
            mes "[^999900My House^000000]";
            mes "House creation failed: " + .@instance;
            mes "Please report this to a Game Master.";
            close;
        }           
        
        if( instance_attachmap("prontera", .@instance, 1, "via") == "" ) {
            instance_destroy(.@instance);
            mes "[^999900My House^000000]";
            mes "House creation failed. No more free maps.";
            mes "Please report this to a Game Master.";
            close;
        }
        instance_attach(.@instance);
        instance_set_timeout 14400, 14400,.@instance;
        instance_init(.@instance);
        sleep2 2000;
        instance_destroy(.@instance);
    }
    close;
}
 
 
Viewed 1426 times, submitted by Dastgir.