viewing paste Novice Tour Script - modi | 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
new_1-2,100,28,4    script  Administrator   832,{
    mes "Welcome to Intel Ragnarok Online!";
    mes "What Service May I Offer You ?";
    next;
    menu "Tour Guide", L14, "Warp to Main Town", L15, "Get Freebies", L16;
 
    L16:
    if(#New_Player == 1 || Class!=Job_Novice ) goto L_Done;
    if(Class==Job_Novice && #New_Player==0) {
        mes "Good Luck on your Adventure !";
        mes "Which path do you wish to take?";
        switch(select("Swordsman:Archer:Mage:Acolyte:Merchant:Thief"))  {
            case 1://Swordsman
            jobchange 1;
            getitem 13945,1;
            break;
            
            case 2://Archer
            jobchange 3;
            getitem 13948,1;
            break;
                
            case 3://Mage
            jobchange 2;
            getitem 13946,1;
            break;
            
            case 4://Acolyte
            jobchange 4;
            getitem 13947,1;
            break;
            
            case 5://Merchant
            jobchange 5;
            getitem 13949,1;
            break;
            
            case 6://Thief
            jobchange 6;
            getitem 13950,1;
            break;
        }
        // Since these lines where everytime the same I put them here.
        // Also you had after those lines a "close" which ends the script
        // completely without setting the "#New_Player" variable to 1
        // A "break;" breaks the "loop" or in this case the "switch" so it ends it and continues with the script below
        getitem 12214,5;          // Convex mirror 5pcs.
        getitem 12210,5;      // Bubble gum 5pcs.
        getitem 12263,5;     // Manual 5pcs.
        set baselevel,20;
        skill 1,9,0;
        set #New_Player,1;
        savepoint "prontera.gat",138,185;
        mes "Start your awesome journey today.";
        mes "If you need help. Please use @request / search for Game Staffs. Thank You.";
        close;
    }
    end;
 
    L_Done:
    mes "You Have Received the Freebies already.";
    close;
 
    L15:
    mes "Warping You Now to The Main Town";
    warp "prontera",138,185;
    
    LEnd:
    close;
 
    L14:
    mes "[ Tour Guide ]";
    mes "Hello would you like a Tour on Intel Ragnarok Online ?";
    mes " ";
    if (select("Yes, Start the Tour!:No Thanks.")==1) {
        warp "prontera",156,175;
        mes "Alright We'll Start!!!";
        sleep2 2000;
        mes "[ Tour Guide ]";
        mes "Intel Ragnarok Online is a Pure Balanced Server";
        mes "Server Rates :";
        mes "Base and Job Experience : 100x";
        mes "99 / 70, Transcendent Classes Only";
        mes "Normal Item Drop Rates: 50%";
        mes "Normal Card Drop Rates: 50%";
        mes "Boss Item Drop Rates : 10%";
        mes "Boss Card Drop Rates: 1%";
        cutin "kafra_09",2;
        sleep2 20000; // 5 seconds
        
        warp "prontera",141,187;
        mes "[ Tour Guide ]";
        mes "These are the Utility NPC's you can Change Job , Reset Skill and Stat and Rent Here.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",171,188;
        mes "[ Tour Guide ]";
        mes "These are the Utility NPC's you can use the Kafra Services, Warper, Stylist and Mall Here.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",182,192;
        mes "[ Tour Guide ]";
        mes "This is the Coin Exchanger you can exchange coins and zeny here.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",175,177;
        mes "[ Tour Guide ]";
        mes "This is the Ingame Control Panel it's the usual Control Panel like in our website.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",142,174;
        mes "[ Tour Guide ]";
        mes "This is Donate Shop you donate to gain some good items and to keep the server alive.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",137,170;
        mes "[ Tour Guide ]";
        mes "This is Support Lady, You Can Suggest Things and Report Bugs in Here.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",131,166;
        mes "[ Tour Guide ]";
        mes "This is Quest Shop, you quest items to get strong in the server.";
        cutin "kafra_09",2;
        sleep2 10000;
 
        warp "prontera",120,168;
        mes "[ Tour Guide ]";
        mes "This is Emperium Breaker Test, you can test your emp breaking skills here.";
        cutin "kafra_09",2;
        sleep2 10000;
        
        // etc.
        
        
        warp "prontera",156,175;
        sleep2 1000;
        mes "[ Tour Guide ]";
        mes "That's all Thank You Hope You Enjoy the Tour Good Luck Have Fun !";
        cutin "kafra_09",2;
        sleep2 5000;
    }
    cutin "kafra_09",255;
    close;
 
OnInit:
    waitingroom "Welcome to Intel Ragnarok Online",0;
    end;
}
 
}
 
// == Mapflags
new_1-2 mapflag nowarp
new_1-2 mapflag nowarpto
new_1-2 mapflag noteleport
new_1-2 mapflag nosave
new_1-2 mapflag nomemo
new_1-2 mapflag nobranch
new_1-2 mapflag pvp_noparty
new_1-2 mapflag restricted  1
new_1-2 mapflag nosave
new_1-2 mapflag nomemo
Viewed 1177 times, submitted by Guest.