viewing paste Unknown #42515 | 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 34 35 36 37 38 39 40 41 42
splendide,217,138,3 script  Farming Warper  10005,{
    if ( agitcheck() || agitcheck2() ) {
        mes "Farming Room will be closed during woe time.";
        close;
    }
    switch(select("Enter [ "+getmapusers("moc_ruins")+" Farmer Inside ]","Later")){
        case 1:
            warp "moc_ruins",0,0;
            end;
        case 2:
            mes "[Farming Warper]";
            mes "Well.. Rich aren't you?";
            close;
    }
    
OnPetiteKilled:
    monster "moc_ruins",0,0,"Dokebi",1110,1,strnpcinfo(0)+"::OnPetiteKilled";
    if( MaxWeight*90/100 < Weight ) {
        warp "SavePoint",0,0;
        end;
    }
    if (rand(99) < 100) // 100% getting gold
        getitem 969,1;
    if (rand(99) < 2) // 2% getting Gold_Coin
        getitem Gold_Coin,1;
    end;
    
OnInit:
    waitingroom "Farming Room",0;
    monster "moc_ruins",0,0,"Dokebi",1110,2000,strnpcinfo(0)+"::OnPetiteKilled";
    end;
}
 
moc_ruins   mapflag nobaseexp
moc_ruins   mapflag nojobexp
moc_ruins   mapflag monster_noteleport
moc_ruins   mapflag nowarp
moc_ruins   mapflag nowarpto
moc_ruins   mapflag nomemo
moc_ruins   mapflag noloot
moc_ruins   mapflag nosave  SavePoint
moc_ruins   mapflag nobranch
Viewed 886 times, submitted by Guest.