Jump to content

Kariton Revolution

Members
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Kariton Revolution

  1. Can someone help me to do this script? Gambler stats item needed 607 1 607 = to random Bonus allstats
  2. sir anakid can you change it to if 150 reborn @skillall ? Thankyou Very much sir
  3. prontera,144,144,4 script Rebirth NPC 83,{ set @name$,"[Rebirth NPC]"; set .max,300; //Change the max no. of reborns here mes @name$; mes "If you're a max of 255/130 you can rebirth 300 times"; mes "And during the 150th reborn you will become a Super Player!"; next; menu "Reborn Now",-,"Uhh.. See ya!",bye; if(BaseLevel != 255 && JobLevel != 130){mes @name$; mes "You don't meet the level requirements"; close;} if(BaseLevel == 255 && JobLevel == 130); mes @name$; mes "Are you sure you wont to have your rebirth now?"; next; if(select("Yes","No")!=1){mes @name$; mes "Goodbye!"; close;} if(reborn[0] < 300){mes @name$; mes "Whoa, you've already reached the maximum!"; close;} if(reborn[0] < 150){ jobchange 4001; set reborn[0],reborn[0]+1; mes @name$; mes "Enjoy!"; close; } if(reborn[0] == 150); set reborn[0],reborn[0]+1; query_sql "UPDATE login SET level=1 WHERE account_id='"+getcharid(3)+"'"; mes @name$; mes "Enjoy!"; close; when i click the npc nothing happen
  4. - script reborn1sttrigger -1,{ OnClock1200: OnClock0000: announce "I have arrived!",0; enablenpc "FirstReborn"; end; OnClock1210: OnClock0010: announce "If that's all ill be going now",0; disablenpc "FirstReborn"; end; OnInit: disablenpc "FirstReborn"; end; } prontera,151,180,4 script FirstReborn 100,{ set .@maxblevel , 99; set .@maxjlevel , 70; set .@reqitem1, 512; set .@reqitem2, 513; set .@reqitem3, 514; set .@reqitem1amt, 1; set .@reqitem2amt, 1; set .@reqitem3amt, 1; mes "[FirstReborn]"; if(reborncount) { mes "You have finish reborn!"; close; } if(Upper != 1 || BaseLevel < .@maxblevel || JobLevel < .@maxjlevel || countitem(.@reqitem1) < .@reqitem1amt || countitem(.@reqitem2) < .@reqitem2amt || countitem(.@reqitem3) < .@reqitem3amt ) { mes "You need to be Base Lvl: "+.@maxblevel; mes "You need to be Job Lvl: "+.@maxjlevel; mes "You need to have "+.@reqitem1amt+" "+getitemname(.@reqitem1); mes "You need to have "+.@reqitem2amt+" "+getitemname(.@reqitem2); mes "You need to have "+.@reqitem3amt+" "+getitemname(.@reqitem3); mes "You dont have enough requirements!"; close; } mes "Congratulations you are now reborn!"; delitem .@reqitem1,.@reqitem1amt; delitem .@reqitem2,.@reqitem2amt; delitem .@reqitem3,.@reqitem3amt; jobchange Job_Novice_High; resetlvl(1); skill 142,1,0; skill 143,1,0; set reborncount, reborncount+1; ResetStatus; set StatusPoint, StatusPoint+(reborncount*100); announce strcharinfo(0)+" has been reborn.",0; close; } prontera,155,180,4 script SecondReborn 100,{ set .@maxblevel , 99; set .@maxjlevel , 70; set .@reqitem, 751; set .@reqitemamt, 5; set .@rebornmax, 10; mes "[SecondReborn]"; if(reborncount < 1) { mes "You didn't take first reborn yet."; close; } if(reborncount >= .@rebornmax) { mes "You cannot reborn anymore."; close; } if(Upper != 1 || BaseLevel < .@maxblevel || JobLevel < .@maxjlevel || countitem(.@reqitem) < .@reqitemamt ) { mes "You need to be Base Lvl: "+.@maxblevel; mes "You need to be Job Lvl: "+.@maxjlevel; mes "You need to have "+.@reqitemamt+" "+getitemname(.@reqitem); mes "You dont have enough requirements!"; close; } mes "Congratulations you are now reborn!"; delitem .@reqitem,.@reqitemamt; jobchange Job_Novice_High; resetlvl(1); skill 142,1,0; skill 143,1,0; set reborncount, reborncount+1; ResetStatus; set StatusPoint, StatusPoint+(reborncount*100); announce strcharinfo(0)+" has been reborn "+reborncount+" times.",0; close; } prontera,159,180,4 script RebornLadder 100,{ set .@count, query_sql ("SELECT char_id,value FROM `global_reg_value` WHERE str='reborncount' ORDER BY value DESC",.@charid,.@reborncount); mes "[RebornLadder]"; for( set .@i, 0; .@i < .@count; set .@i, .@i+1) { query_sql "SELECT `name` FROM `char` WHERE char_id="+.@charid[.@i]+"",.@charname$; mes .@charname$+" "+.@reborncount[.@i]; } close; } prontera,150,193,4 script Reset Girl 124,{ set .rskill,5000; // Set value in zeny for skill reset here set .rstat,5000; // Set value in zeny for stat reset here set .rboth,9000; // Set value for "package deal" (i.e.: reseting both) here. mes "[Reset Girl]"; mes "I am a Reset Girl."; mes "Reset Stats: "+ .rstat +"z"; mes "Reset Skills: "+ .rskill +"z"; mes "Reset Both: "+ .rboth +"z"; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Quit")) { case 1: mes "[Reset Girl]"; if (Zeny < .rskill) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,Zeny-.rskill; ResetSkill; close; case 2: mes "[Reset Girl]"; if (Zeny < .rstat) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,Zeny-.rstat; ResetStatus; set StatusPoint, StatusPoint+(reborncount*100); close; case 3: mes "[Reset Girl]"; if (Zeny < .rboth) { mes "Sorry, you don't have enough Zeny."; close; } mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!"; set Zeny,Zeny-.rboth; ResetSkill; ResetStatus; set StatusPoint, StatusPoint+(reborncount*100); close; case 4: mes "Come again soon!"; close; } } http://rathena.org/board/topic/62652-rebirthreborn-system/?hl=reborn hello everyone im using this reborn script and i want to add the npc that make the 3rd,4th to 300 reborn and if player made the and finish the 150 reborn player will have allskill and if 300 reborn gm level 1 and Also how to make the Karma system? please help me
  5. how manny reborn can do? ) sir can you make when player reborn reach to 150 will have allskill?
  6. Thankyou Sir ) is that working on ea or 3ceam? svn
  7. script that allows player to reborn/rebirth multiple times after the normal rebirth. Gives additional statpoint Like WaffleRO style
  8. # Use this option if you have a MySQL server with InnoDB support enabled # but you do not plan to use it. This will save memory and disk space # and speed up some things. #skip-innodb nothing happen ( please help help help
  9. wla kasing innodb sql q panu ba magkaron? hahah Thankyou Romar Developer! sir pwede ba pabigyan aq ng rar na hahah please po salamat po ung updated po na rathena sir ah ) hahah MAraming MARAMING SALAMAT !! )
  10. 17:34:06 CREATE TABLE IF NOT EXISTS `interreg` ( `varname` varchar(11) NOT NULL, `value` varchar(20) NOT NULL, PRIMARY KEY (`varname`) ) ENGINE=InnoDB Error Code: 1289. The 'InnoDB' feature is disabled; you need MySQL built with 'InnoDB' to have it working 0.078 sec how to have innoDB in mysql? i cant execute rathena svn T.T
  11. Hi Anakid Thankyou !. can you give me a data folder for that client ? please im having problem with my luas
  12. please Help me Please What svn should i use? client? help help help
  13. Sir Help panu po ba isetup yang rathena svn at pwede po penge din ng Latest svn ng rathena at pano din po mag lagay ng commands sa mga lvl 0 players jan ? thankyou ng marami !! :DD
  14. sige thanks sir pano iportforward ung prolinkh5001N Wifi help ung process po mismo kc ginawa q na hindi padin ma port ?
  15. open port na po sya anu po lalagay q sa char_ip map_ip subnet ? ung wan ip q ? po ba ?
  16. how can i online my ragnarok private server in my own computer what ip should i put in char_ip map_ip Subnet ? im using wireless router Help me please Thanks
  17. pano ko q mapapa online ung RO ko gamit lang ang Computer q at wifi router ? may nakakaalam po ba? help lang ) Thankyou :*
  18. can anyone script me a karma system it start to 0 karma -1000 = Good Karma there a 0% to drop your equip but your damage is normal it will not increase 10000 = Bad Karma It will increase your damage if you have a Bad Karma but if someone kill you there a chance to drop your equip example Player 1 level 99 player 2 level 99 player 3 level 50 below if player 1 kill player 3 he will have a bad Karma if player 1 kill player 2 and he had a bad karma it will increase he's bad karma how to be -1000 to be safe to item dropping he need to die with other players to decrease his karma until he get a -1 karma and he start with -1 karma and he need to kill a same level player player 1 kill player 2 his karma will go up to - but if he kills a low level his -karma points will decrease its like in waffleRO Karma System sry for bad explanation thanks thanks
  19. thanks a lot it works Thank you thank you
  20. help here's the picture what is the problem ?
  21. OMG , i search about programming languages List and it's so plenty i don't know where i start reading everyone can you post here your favorite programming languages and what its do :DD link of Programing languages: http://en.wikipedia.org/wiki/List_of_programming_languages
×
×
  • Create New...