Jump to content

BeWan

Members
  • Posts

    398
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by BeWan

  1. BeWan

    Fake Player

    i will close this one now since i already solve this few weeks ago lol
  2. are you asking about the format of clientinfo.xml?
  3. to solve your problem put the files on your-ro-files / System OngoingQuestInfoList.lub OngoingQuestInfoList_Sakray.lub
  4. i don't know if this is allow or not. *but if not kindly delete my comment. ? i include the crown and the wings. ? Obito Set.rar
  5. use this 4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; bonus3 bAutoSpell,"WS_OVERTHRUSTMAX",1,10; bonus3 bAutoSpell,"MC_MAMMONITE",6,50; if(getskilllv("MC_MAMMONITE")==10){ bonus3 bAutoSpell,"MC_MAMMONITE",10,50; } },{},{}
  6. you need to wait to trigger the skill or change the chance rate then.
  7. High Priest Card if(isequippedcnt(4357,4359,4361,4365,4367,4236)<1) { bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",4,50,0; bonus2 bSubEle,Ele_Dark,-15; } Lord Knight Card if(isequippedcnt(4359,4361,4363,4365,4367,4236)<1) { skill "LK_BERSERK",1; bonus bMaxHPrate,-10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",50; } High Wizard Card if(isequippedcnt(4357,4359,4361,4363,4367,4236)<1) { bonus bIntravision; bonus bAtkRate,-50; bonus bmatkrate,-50; }, }, {},{ heal 0,-2000; } Whitesmith Card if(isequippedcnt(4357,4359,4363,4365,4367,4236)<1) { bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; bonus3 bAutoSpell,"WS_OVERTHRUSTMAX",1,10; bonus3 bAutoSpell,"MC_MAMMONITE",6,50; if(getskilllv("MC_MAMMONITE")==10){ bonus3 bAutoSpell,"MC_MAMMONITE",10,50; } }
  8. you can add bonus stats on the item bonus bCritAtkRate,10;
  9. just give them command on group or create a script for individual id who can use the @afk command hit like/reputation button if you think i helped you. ?
  10. here edit onlock and onminute prontera,150,150,4 script Event 998,{ OnInit: OnClock0000: set .LuckyTime,rand(24); OnMinute60: if( gettime(3) == .LuckyTime ){ set .DelayMin,rand(60); sleep ( .DelayMin * 60000 ); while(1){ query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid; attachrid .@aid; if( CheckVending() ){ DetachRID(); continue; } announce strcharinfo(0) +" won 500 Cash in Lucky Pick Event", 0,0x00FF00; set #CASHPOINTS,#CASHPOINTS+500; dispbottom "you got 500 cash point"; break; } } end; }
  11. can you post an example of wings you want?
  12. sure just post a request here ?
  13. why dont you just use Euphy's WOE Controller?
  14. just put it manually on all specific items. you can find it on db/pre-re or re/items_db
  15. View File Freebies NPC with Gepard Function (UniqueID) Freebies NPC with gepard function (UniqueID) In response to this post : Submitter BeWan Submitted 12/26/19 Category Utilities Video Content Author BeWan  
  16. BeWan

    Desperado Issue

    if the desperado damage you're talking about you can edit on db/skill_damage_db to control the damage output if you want to edit the multiple hits. skill_cast_db.txt.
  17. BeWan

    Desperado Issue

    you can nerf the skill damage on db/skill_damage_db
  18. update this query_sql "SELECT char.char_id, char.name, char_reg_num.value FROM char_reg_num LEFT JOIN `char` ON char.char_id=char_reg_num.char_id WHERE char_reg_num.key='brokeemp' ORDER BY CAST(char_reg_num.value AS UNSIGNED) DESC LIMIT 10", .@char_id, .@name$, .@count;
  19. add this // The Emperium has been broken. OnAgitBreak: set brokeemp,brokeemp+1; set brokeemp2,brokeemp2+1; and use this prontera,148,188,5 script Breaker Ladder 790,{ query_sql "SELECT char.char_id, char.name, char_reg_num.value FROM char_reg_num LEFT JOIN `char` ON char.char_id=char_reg_num.char_id WHERE char_reg_num.key='brokeemp2' ORDER BY CAST(char_reg_num.value AS UNSIGNED) DESC LIMIT 10", .@char_id, .@name$, .@count; mes "[^008000Emperium Breaker^000000]"; mes "Hey, "+strcharinfo(0)+"!"; mes "Welcome to the Emperium Breaker ranking."; mes "What do you want?"; menu "- My Points",-,"- Leader's Emperium Breaker",Llad,"- Exchange Points",Lex,"- Go out",Lno; next; mes "[^008000Emperium Breaker^000000]"; mes strcharinfo(0)+", Your current balance is: ^FF0000"+brokeemp2+"^000000 Points."; close; Lno: next; mes "[^008000Emperium Breaker^000000]"; mes "Suit yourself.."; close; Lex: next; mes "[^008000Emperium Breaker^000000]"; mes "What points would you like to exchange?"; mes "^FF0000Note: Check your inventory and weight before exchanging with me!"; menu "Emperium Break Points",-,"- Sair",Lno; next; mes "[^008000Emperium Breaker^000000]"; mes "What do you want to exchange with?"; menu "Billow",-,"Emblem of Solar God",Lesg,"Ripple",Lrip,"Silver Ornament",Lsil,"Wrath of Valkyrie",Lval; next; mes "[^008000Emperium Breaker^000000]"; mes "You need 50 Breaker Points for this.."; mes "Do you still want Billow?"; menu "Yes",-,"No",Lno; if(brokeemp2 < 50) goto Lnep; if(brokeemp2 >= 50) next; mes "Here you go!"; getitem 7091,1; set brokeemp2,brokeemp2-50; close; Lnep: next; mes "[^008000Emperium Breaker^000000]"; mes "Not enough points!"; close; Lesg: next; mes "[^008000Emperium Breaker^000000]"; mes "You need 70 Breaker Points for this.."; mes "Do you still want Emblem of Solar God?"; menu "Yes",-,"No",Lno; next; if(brokeemp2 < 70) goto Lnep; if(brokeemp2 >= 70) mes "[^008000Emperium Breaker^000000]"; mes "Here you go!"; getitem 7086,1; set brokeemp2,brokeemp2-70; close; Lrip: mes "[^008000Emperium Breaker^000000]"; mes "You need 50 Breaker Points for this.."; mes "Do you still want Ripple?"; menu "Yes",-,"No",Lno; if(brokeemp2 < 50) goto Lnep; if(brokeemp2 >= 50) next; mes "Here you go!"; getitem 7090,1; set brokeemp2,brokeemp2-50; close; Lval: mes "[^008000Emperium Breaker^000000]"; mes "You need 50 Breaker Points for this.."; mes "Do you still want Wrath of Valkyrie?"; menu "Yes",-,"No",Lno; if(brokeemp2 < 50) goto Lnep; if(brokeemp2 >= 50) next; mes "Here you go!"; getitem 7078,1; set brokeemp2,brokeemp2-50; close; Lsil: mes "[^008000Emperium Breaker^000000]"; mes "You need 50 Breaker Points for this.."; mes "Do you still want Silver Ornament?"; menu "Yes",-,"No",Lno; if(brokeemp2 < 50) goto Lnep; if(brokeemp2 >= 50) next; mes "Here you go!"; getitem 7077,1; set brokeemp2,brokeemp2-50; close; Llad: next; mes "[^008000Emperium Breaker^000000]"; for( set .@x,0; .@x<=9; set .@x,.@x+1 ) { mes "^0000FF"+(.@x+1)+".^000000 "+.@name$[.@x]+" - ^FF0000"+.@count[.@x]+"^000000 Pontos"; } // .@x starts at 0, but you want to start with '1st', so use (.@x+1);) close; }
  20. here is the list of kro 2012 - 2017 https://ratemyserver.net/index.php?page=download_kROLinks
×
×
  • Create New...