summaryrefslogblamecommitdiff
path: root/npc/003-10/slots.txt
blob: fdb0076fc801d7ce14a4da7934616e5614dd0c74 (plain) (tree)





































                                                                 

                                                             



                                                             
                            



                           
                      
                                                

                                     




                
                          

                           


                  





                                               
                           
                                                     
                                          
                                
                                                       
                                                        
                               
                                              
            
                                              
     
         
                
 




                










                                   
                             
                            















                                             
// TMW2 Scripts
// Author:
//    Jesusalva
// Description:
//    Slot Machine for bets

003-10,22,37,0	script	Slot Machine#003-10a	NPC_SLOTMACHINE,{
    function symbol{
        switch (getarg(0)) {
        case 1:
            mesn "%%A";
            break;
        case 2:
            mesn "%%B";
            break;
        case 3:
            mesn "%%C";
            break;
        case 4:
            mesn "%%D";
            break;
        case 5:
            mesn "%%E";
            break;
        case 6:
            mesn "%%F";
            break;
        case 7:
            mesn "7";
            break;
        default:
            mesn "%%@";
            break;
        }
    }

L_Menu:
    mesn;
    mesc l("Spin three symbols, and jackpot great rewards!");
    mesc l("Just one coin for spin.");
    next;
    menu
        rif(countitem(CasinoCoins) >= 1, l("Spin!")), L_Spin,
        l("Prizes"), L_Info,
        l("Trade"), L_Trade,
        l("Leave"), L_Quit;

L_Info:
    mes "";
    mesc l("Prizes:");
    mes l("##9 777: @@.", getitemlink(Monocle));
    mesc l("Three equal: 30 coins.");
    mesc l("Two equal: 1 coin.");
    next;
    goto L_Menu;


L_Spin:
    mesc l("Spinning...");
    next;
    delitem CasinoCoins, 1;
    .@a=rand(1,7);
    .@b=rand(1,7);
    .@c=rand(1,7);
    symbol(.@a);
    symbol(.@b);
    symbol(.@c);
    next;
    mesn;
    if (.@a == .@b && .@a == .@c && .@a == 7) {
        getitem Monocle, 1;
        mescol l("Jackpot! You got the Monocle!", 3);
    } else if (.@a == .@b && .@a == .@c) {
        getitem CasinoCoins, 30;
        mescol l("Congrats! You got thirty coins!", 3);
    } else if (.@a == .@b || .@a == .@c || .@b == .@c) {
        getitem CasinoCoins, 1;
        mescol l("Lucky! You got a coin!", 3);
    } else {
        mescol l("It wasn't this time...", 3);
    }
    next;
    goto L_Menu;

L_Trade:
    openshop;
    closedialog;
    close;

L_Quit:
    close;

OnInit:
    .sex = G_OTHER;
    .distance = 4;
	tradertype(NST_CUSTOM);

    sellitem WoodenSword, 940;
    sellitem JeansShorts, 820;
	sellitem ElixirOfLife, 150;
    sellitem PoisonArrow, 30;
    sellitem StrangeCoin, 5;
    end;

OnCountFunds:
	setcurrency(countitem(CasinoCoins));
	end;

OnPayFunds:
	if( countitem(CasinoCoins) < @price )
		end;
	delitem CasinoCoins,@price;
	purchaseok();
	end;


}