Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prontera,150,150,3 script Zell 92,{
- l_one:
- //Configurations:
- //Name of Npc:
- set @lydecorno$,"[Zell]";
- mes @lydecorno$;
- //falas:
- mes "Are you ready to be a Hero?";
- if( select("Yes:About") == 2 ){
- next;
- mes @lydecorno$;
- mes "Here, you can gets a Random Anime Power !";
- next;
- mes @lydecorno$;
- mes "Are they Tsunayoshi, Sakura, Edward, Soul, Yugi and Kirito.";
- next;
- goto l_one;
- }
- mes "Good Luck, and the battle begins !";
- close2;
- switch( rand(7) ) {
- case 0:
- //Tsunayoshi [Speed Máx - Agi UP]
- set tsuna,1;
- atcommand "@speed 1";
- sc_start SC_ASPDPOTION2,360000,0;
- warp "pvphero",59,55;
- end;
- //Sakura Atributos [Capture monster - Dex UP]
- case 1:
- Announce "Key that holds the power of Darkness, show their true powers over us and offer them the brave "+strcharinfo(0)+" who accept this mission !",0;
- Announce "FREE!!!!",0;
- killmonsterall "pvphero";
- sc_start SC_DEXFood,360000,10;
- warp "pvphero",155,118;
- end;
- //Yugi [summon tree random monster(Thanatos - Valquiria - Poporing)- LUK UP]
- case 2:
- warp "pvphero",34,203;
- set @corasaonascartas, rand(1,50);
- if(@corasaonascartas==1){ summon "Exódia",1708,990000; sc_start SC_LUKFood,360000,10; end; }
- if(@corasaonascartas<=15){ summon "Valkiria, Hero Element",1751,990000; sc_start SC_LUKFood,360000,10; end; }
- if(@corasaonascartas>=15){ summon "Poporing Hero Element",1847,990000; sc_start SC_LUKFood,360000,10; end; }
- // Soul[ Reborn Twice times - Full protect]
- case 3:
- set soul,1;
- sc_start SC_CP_HELM,600000,5;
- sc_start SC_CP_SHIELD,600000,5;
- sc_start SC_CP_ARMOR,600000,5;
- sc_start SC_CP_WEAPON,600000,5;
- sc_start SC_CP_ARMOR,600000,5;
- warp "pvphero",208,227;
- end;
- //Kirito [All Bonus stats - Announces when kill and die]
- case 4:
- set kirito,1;
- sc_start SC_ASPDPOTION2,360000,0;
- sc_start SC_VITFood,360000,10;
- sc_start SC_INTFood,360000,10;
- sc_start SC_DEXFood,360000,10;
- sc_start SC_LUKFood,360000,10;
- warp "pvphero",265,306;
- end;
- //Edward[When die, all players reborn and announces who makes this - Int,Agi and Dex up]
- case 5:
- set edward,1;
- sc_start SC_ASPDPOTION2,360000,0;
- sc_start SC_INTFood,360000,10;
- sc_start SC_DEXFood,360000,10;
- warp "pvphero",259,134;
- end;
- //Naruto[make 3 clones - STR,AGI,VIT,INT UP]
- case 6:
- warp "pvphero",55,278;
- // If you want to increase the number of clones, I will simplify the command for easy understanding.
- atcommand "@slaveclone "+getcharid(0);
- atcommand "@slaveclone "+getcharid(0);
- atcommand "@slaveclone "+getcharid(0);
- ////UP, the number of clones.
- sc_start SC_INTFood,360000,10;
- sc_start SC_HitFood,360000,10;
- sc_start SC_VITFood,360000,10;
- sc_start SC_ASPDPOTION2,360000,0;
- end;
- //Goku Atributos [2 goku effect activate - Check GOKUDAME function]
- case 7:
- Announce "Its more of 8000 !",0;
- warp "pvphero",116,152;
- callfunc "gokudame";
- end;
- }
- }
- //GOKUDAME - Powers of Goku - (Kill all and God Mode)
- function script gokudame {
- //Change the first value of the rand to a higher number if you wanted to leave the special more easy.
- //The default is 10%, if you wanted to leave but hard to modify the second number the rand, in case
- set @gocu, rand(1,10);
- if(@gocu==1){
- warp "pvphero",49,9;
- //Change this time the player takes to enter sayajin mode, default is 10 seconds "(sleep2 10000)".
- Announce ""+strcharinfo(0)+": So I'll have to get in Saiyan Mode",0;
- sleep2 10000;
- Announce ""+strcharinfo(0)+": AAAAAAAAAAAAA.....AAAAAAAAAAA.AAAAAAAAAAAAAAAAA!!!",0;
- Announce "Zell : Its most of 9000000PW !",0;
- // The intention of these warps here is to give an effect of ultra teleport to look like the player is so fast
- warp "pvphero",0,0;
- warp "pvphero",0,0;
- warp "pvphero",0,0;
- warp "pvphero",0,0;
- warp "pvphero",0,0;
- // if you dont want this, delete the warps with 0,0;
- atcommand "@doommap";
- }else{
- atcommand "@battleignore";
- // Change the time he is invincible to attacks (deafult: 60000 - 60 seconds)
- sleep2 60000;
- atcommand "@battleignore";
- }
- }
- //System for characters that activate powers during the fight, just change if you know what you're doing
- pvphero,49,56,5 script setheros -1,{
- OnPcDieEvent:
- if(soul==1){set .@z, 2;sleep 5000;atcommand "@alive";set .@z, .@z + 1;if(.@z > 0){set soul,0;dispbottom "Soul: My spirit will crush !";end;}}
- if(edward==1){set edward,0;atcommand "@raisemap";warp prontera,150,150;Announce "The player "+strcharinfo(0)+" just use the philosopher's stone to resurrect the dead, but his body had to be sacrificed",0;end;}
- if(kirito==1){Announce ""+strcharinfo(0)+": Sorry Asuna...I failed.",0;set kirito,0;end;}
- if(tsuna==1){atcommand "@speed 50";set tsuna,0;end;}
- OnPcKillEvent:
- if(kirito==1){Announce ""+strcharinfo(0)+" are killing all noobs !",0;end;}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement