Jump to content

creeps123

Members
  • Posts

    78
  • Joined

  • Last visited

Everything posted by creeps123

  1. Hi Rathena guys.. I just wanna ask you, if you know or if there is a way to increase all mob attack rate.. so i won't have to edit their attack in mob_db one by one.. if there is any.. please let me know.. thanks in advance!.. bump! please help!
  2. hi. i just want to request a simple script to put in my item so that it will immune to full strip or any kind of strip.. thanks guys!
  3. Please help me.. can someone reupload this? http://rathena.org/board/topic/66962-basic-complete-renewal-data-english-folder/ and also this. http://rathena.org/board/topic/54190-release-basic-rathena-client/ I am trying to find a good data folder for my clients 2011-09-06 and 2011-03-15 can't find though.. please help me.. because when i try to use the 2012-04-xx client it doesn't work,, the body relocation is not doing its job.. ive already tried to edit skill.c and recompile but it only says in the process that Link error clif_snap bla bla.. I am using revision 15527 of rathena.. please don't tell me to use other rathena im lazy upgrading.. Help me guys!!
  4. Hi, I'm using data folder and lub files[translated] of 2011-12-28. I am using RagRE client of 2011-09-06 diffed with dont read data and lua first. (even though i also tried using a diffed client having them patched for trial and error purposes) I am using rathena 15527 revision.. Note: my ROFolder is updated.. i use miruku.. well here is my problem 1st image: (not yet clicking to where should i body reloc) 2nd image (clicked the targeted cell and boom there goes the error) Where could it be wrong? please help me.. same happens when i cast heal on players or me. but the skills that isn't targeted shows no error.. only skills that you need to target.. thanks in advance guys!
  5. creeps123

    LMS NPC

    Hello Rathena, i want to request a Last Man Standing NPC, in this npc. i want it to be adjustable while talking to the npc. you don't have to edit OnClock inside the script but it can be editable in the NPC.. in other words you can set it up with Administrator settings. administrator view. thanks for your help guys!! more power.. please include this in the setup: manual start (click to start) set the time of autostart (the npc will ask you "Please Enter the Time(s) when you want the lms to activate" (you can put in every 6 hours or every 3 hours.) sorry for my bad english pls understand, and i thank you from the bottom of my heart. i just want it to be easy to use. because i can't handle edit-ing the npc script. im so sorry bump
  6. sorry i really don't get it on how you will add the scripts together. im so sorry i cannot understand how it works even though i read them. i did the examples but when i try opening the npc. there it goes. no selection of what to refine. can you just pls make it more understandable to newbie like me. thanks in advance. and if it isn't a bother can you please post the final script? if you ever have time to make one. but if not. its ok. EDIT: tried using your script which i found in google. quiz_02.gat,235,345,6 script Refiner 437,{ OnUsed: set .Mode,0; // Refine mode [ 0 = Refine +1 Each time / 1 = Refine to Max Limit ] set .EquipCheck,1; // Check Equips is refineable or not. [ 0 = Disable / 1 = Enable ] set .MaxRefine,10; // Max Refine Limit set .TicketID,7608; // Ticket ID switch(select( ( getequiprefinerycnt(1) >= .MaxRefine || getequipisequiped(1) == 0 )?"":"Headgear [ ^4EEE94"+getequipname(1)+"^000000 ]", ( getequiprefinerycnt(2) >= .MaxRefine || getequipisequiped(2) == 0 )?"":"Armor [ ^4EEE94"+getequipname(2)+"^000000 ]", ( getequiprefinerycnt(3) >= .MaxRefine || getequipisequiped(3) == 0 )?"":"Left Hand [ ^4EEE94"+getequipname(3)+"^000000 ]", ( getequiprefinerycnt(4) >= .MaxRefine || getequipisequiped(4) == 0 )?"":"Right Hand [ ^4EEE94"+getequipname(4)+"^000000 ]", ( getequiprefinerycnt(5) >= .MaxRefine || getequipisequiped(5) == 0 )?"":"Garment [ ^4EEE94"+getequipname(5)+"^000000 ]", ( getequiprefinerycnt(6) >= .MaxRefine || getequipisequiped(6) == 0 )?"":"Shoes [ ^4EEE94"+getequipname(6)+"^000000 ]", ( getequiprefinerycnt(9) >= .MaxRefine || getequipisequiped(9) == 0 )?"":"Middle Headgear [ ^4EEE94"+getequipname(9)+"^000000 ]", ( getequiprefinerycnt(10) >= .MaxRefine || getequipisequiped(10) == 0 )?"":"Lower Headgear [ ^4EEE94"+getequipname(10)+"^000000 ]", "^FF0000Close^000000")) { Case 1: if ( .Mode == 0 ) { callsub RefineSystem,1; } if ( .Mode == 1 ) { callsub MaxRefineSystem,1; } Case 2: if ( .Mode == 0 ) { callsub RefineSystem,2; } if ( .Mode == 1 ) { callsub MaxRefineSystem,2; } Case 3: if ( .Mode == 0 ) { callsub RefineSystem,3; } if ( .Mode == 1 ) { callsub MaxRefineSystem,3; } Case 4: if ( .Mode == 0 ) { callsub RefineSystem,4; } if ( .Mode == 1 ) { callsub MaxRefineSystem,4; } Case 5: if ( .Mode == 0 ) { callsub RefineSystem,5; } if ( .Mode == 1 ) { callsub MaxRefineSystem,5; } Case 6: if ( .Mode == 0 ) { callsub RefineSystem,6; } if ( .Mode == 1 ) { callsub MaxRefineSystem,6; } Case 7: if ( .Mode == 0 ) { callsub RefineSystem,9; } if ( .Mode == 1 ) { callsub MaxRefineSystem,9; } Case 8: if ( .Mode == 0 ) { callsub RefineSystem,10; } if ( .Mode == 1 ) { callsub MaxRefineSystem,10; } Case 9: close; } RefineSystem: if ( .EquipCheck == 1 && getequipisenableref(getarg(0)) == 0 ){ mes "I cant refine this items. Because it is unrefinable."; close; } successrefitem (getarg(0)); delitem .TicketID,0; close; MaxRefineSystem: if ( .EquipCheck == 1 && getequipisenableref(getarg(0)) == 0 ){ mes "I cant refine this items. Because it is unrefinable."; close; } for ( set .@i,getequiprefinerycnt(getarg(0)); getequiprefinerycnt(getarg(0)) < .MaxRefine; set .@i,getequiprefinerycnt(getarg(0)) ){ successrefitem (getarg(0)); } message strcharinfo(0),"The Equipments has been refined, Ticket will also be removed from your inventory."; delitem .TicketID,0; close; } how to edit this so the npc will check if the player have the Refine ticket for example the ticket that will be used is itemID:7068(PremiumTicket) if they dont have it, they can't refine. but if they have 1 pc they can refine an item with +1 please help me.. thanks a lot! EDIT: ok i get it now. ineed to edit it from item_db. but my problem now is how to get the npc don't work if they dont have the Refine Ticket. when i refine. it deletes the item but even if the item rans out. it will stll do the work and refine the item even wthout the ticket. EDIT: i think i got it. Thanks for this lol
  7. Ok sir Emistry. Thanks in advance erm, function script RefineFunc { for( set .@i,1; .@i <= 10; set .@i,.@i + 1 ) set .@Menu$,.@Menu$ + (( getarg(2) & pow( 2,(.@i-1 ) ) && getequiprefinerycnt( .@i ) >= getarg(3) && getequiprefinerycnt( .@i ) < getarg(4) && getequipisequiped( .@i) )?"^FF0000+"+getequiprefinerycnt( .@i )+" ^0000FF"+getequipname( .@i )+" "+( getitemslots( getequipid( .@i ) )?"["+getitemslots( getequipid( .@i ) )+"]":"" )+"^000000":"" )+":"; set .@Refine,select( .@Menu$ ); mes "Required ^FF0000"+getarg(1)+" x "+getitemname( getarg(0) )+"^000000"; if( getarg(5) == 1 && !getequipisenableref( .@Refine ) ) mes "I cant refine this items. Because it is ^FF0000Un-Refineable^000000."; else{ if( select( "^FF0000Refine^000000:Cancel" ) == 2 ) close; if( countitem( getarg(0) ) < getarg(1) ) close; delitem getarg(0),getarg(1); if( rand(100) < getarg(7) ){ if( getarg(6) ) while( getequiprefinerycnt( .@Refine ) < getarg(4) ) successrefitem ( .@Refine ); else successrefitem ( .@Refine ); mes "You have refined : "; mes "^FF0000+"+getequiprefinerycnt( .@Refine )+" ^0000FF"+getequipname( .@Refine )+"^000000"; }else{ failedrefitem ( .@Refine ); mes "Sorry, Failed in Refine and Equipment...Destroyed."; } } close; } actually i dont get this at all sorry about that sir emistry. i just don't know how to edit this thing..
  8. Hello Rathena, I just want to request a Refiner NPC that can refine items 100% success rate only 1 refine. not +10 only +1 and before a player can have his item refined by 100% successful +1 refine the npc requires the player to have a refine ticket. this ticket shouldn't be used as 1 ticket = +10 1 ticket = +1 sure refine. and pls can you also take care of the ticket? i don't have a clue what ticket to use. thanks a lot!!
  9. Yes. help pls!!! Bump! FIXED it by editing Renewal.h
  10. i already did that.. still no fix.. only str = 212 all my 7237 stat points are consumed.. but back when i was still using eathena older revision.. 7237 max stat of 255 can max agi and str 255 and still got extra.. but now.. now even str can be maxed lol.
  11. I have max lvl of 255 max stat of 255 but when i try to max out 1 of my stat. it only reaches 212.. used all my statpoints.. im using rathena r15527 tried fixing src/battle.c src/map.h like 1000 - 1001 something like that still got no fix.. tried editing player.conf client.conf statpoint.txt i replaced its conteng with pre renewal still got no fix.. am i missing something here? please help me browsed rathena eathena but still got no fix.. ( i bet it is somwthing here: src/map/pc.c anyone? pls help me /// Returns the number of stat points needed to change the specified stat by val. /// If val is negative, returns the number of stat points that would be needed to /// raise the specified stat from (current value - val) to current value. int pc_need_status_point(struct map_session_data* sd, int type, int val) { int low, high, sp = 0; if ( val == 0 ) return 0; low = pc_getstat(sd,type); high = low + val; if ( val < 0 ) swap(low, high); for ( ; low < high; low++ ) #if REMODE //Renewal Stat Cost Formula sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5)); #else sp += ( 1 + (low + 9) / 10 ); #endif return sp; } bump pls! anyone.. i just don't know how to edit this stuff. dunno the values lol
  12. Mga idol.. bakit po ganun.. gamit ko po ay.. rathena revision 15527.. max lvl ko po ay 255 pero dpt ang total st points ko po ay 7k+ pero bakit po 6110 lang.. max stat ko dn po ay 255 naka set.. any ideas sir? maraming salamat po sa mga tutulong.. sa tingin ko ang max statpoint sa lvl 255 ay 7237.. sana nmn po matulungan nyo ako..
  13. Im using renewal,, why is that Storm gust heaven drive etc etc have cast? tried checking db folder skill_db bla bla and skill.conf to be sure.. anyone can help me?? even on 300 dex it still has cast.. lol it is very disappointing.. pls someone help me.. EDIT: Trying out the Renewal.h i didn't know that there was this renewal.h in rathena svn
  14. also in the rathena.exe same problem with the guild name.. Sir tried what you said.. it's good now.. i tried changing job to creator while using rathena.exe and this prompted there it goes.. another problem is that i have 150 dex and i already set it in battle/skill.conf 150 no cast.. still skills have cast i wonder if it has something to do with the source code? or is it because the revision? really got no idea..
  15. thank you sir.. ill try it out and give a feedback.. EDIT: sir i tried using the Rathena Test Server.exe and it reads the pallete perfectly.. but i do not know why my newly diffed RE doesn't sir any ideas? EDIT: hmm tried using 2011-05-17 client and it worked.. but another problem is that when i change to creator job.. i get to see that kind of error again.. only dye 3 is good with creator.. another problem here: :anyone knows how to fix this? i tried creating a guild and poof. there it goes.. only the character's name and the Position are visible and upside down.. the name of the guild isn't visible.. what do you think is the problem here?
  16. Ok sir!! Thanks a lot ill be waiting for your post! forgot the @dye 4 also is distorted... =[
  17. i already do that. but still got the palletes distorted
  18. hello, im using this data folder.. and what do you mean the palletes aren't installed? and if so can you tell me how to do that? thanks. bump
  19. Okay guys thanks a lot! Well another problem.. you see. i am using the data folder you have given me.. but when i tried using @dye 5 the palletes are distorted or something like black green messed pallete.. but when i use @dye 1-4 it is good as normal any suggestions pls? bump!
  20. sir.. i diffed it but.. when i run it it says.. Module Name: D:GamesRagnarok2011-03-15aRagexeRE.exe.patched.exe Time Stamp: 0x4d7f06a5 - Mon Mar 14 23:26:45 2011 Exception Type: 0xc0000005 0x005a0ef8 2011-03-15aRagexeRE.exe.patched.exe eax: 0x03ccded8 ebx: 0x0012fc70 ecx: 0x03d0e350 edx: 0x04982000 esi: 0x03d50f48 edi: 0x00775207 ebp: 0xffffffff esp: 0x0012fc1c stack 0012fc1c - 0013001c 0012FC1C : 47 FE 75 E0 E0 6D 00 00 58 DC 89 00 A0 84 7A 00 0012FC2C : 80 68 96 04 70 FC 12 00 01 00 00 00 AC FC 12 00 0012FC3C : 69 20 76 00 00 00 00 00 9A 9D 70 00 48 0F D5 03 0012FC4C : C3 43 77 00 52 65 71 4A 6F 62 4E 61 6D 65 00 00 0012FC5C : 69 71 DA 63 0A 00 00 00 0F 00 00 00 07 52 77 00 0012FC6C : E0 6D 00 00 00 20 98 04 1F FE 75 E0 A0 EF 62 76 0012FC7C : 58 DC 89 00 00 00 00 00 10 00 00 00 4C FC 12 00 0012FC8C : 2B 20 76 00 00 FF FF FF FF E7 6E 00 F0 6C 7A 00 0012FC9C : C7 FE 75 E0 00 00 00 00 0F 00 00 00 EF FE 75 E0 0012FCAC : F0 FE 12 00 74 CD 76 00 00 00 00 00 1E 75 71 00 0012FCBC : 58 DC 89 00 91 75 71 00 01 00 00 00 3F C7 73 00 0012FCCC : B7 FE 75 E0 30 31 8A 00 B0 21 AA 00 88 FF 12 00 0012FCDC : 00 00 00 00 F8 2C 34 02 00 00 40 00 01 00 00 00 0012FCEC : 40 42 0F 00 71 00 00 00 00 00 00 00 F8 2C 34 02 0012FCFC : 0A 00 00 00 98 0B 7B 01 70 34 B0 77 8A 00 00 00 0012FD0C : F8 2C 34 02 80 00 00 00 20 2D 34 02 00 00 34 02 Launch Info 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 Job : Novice ok ive fixed it.. and again theres another problem.. why is that atcommand_conf doesn't have the commands?? to change the usage of commands EDIT: FIXED IT AGAIN.. BUT STILL.. MY PROBLEM IS THAT the data folder u have given me supports 553 CLOTH COLOR BUT WHEN I DO @dye 5 THE CLOTH COLOR BECOMES ABSTRACT COLORS WITH GREEN BLACK LIKE AN ERROR DYE (DISTORTED PALLETE).. can someone please help me fix this??
  21. I Tried replace by log_db_db: log and it worked i dont find errors! my problem now is how to add custom items in RE cuz im only familiar with xray.. XD THANKS A LOT SIR JUDAS and oh before i forget.. how to make a RagexeRE like the rathena u gave me?? i just want to make a client that has the name of my server. but when i try to patch it.. it wont allow me to. can you guide me aswell? another problem is this.. ( the RAthena Test Server is showing and the description pls help me
  22. here.. // MySQL Log SQL Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: ragnarok log_db_db: ragnarok log_codepage: log_login_db: loginlog bump XD
  23. EDIT: also errors from map server are now gone only the log server have errors and also do you have a guide to setup Flux CP from this rathena revision? i saw some posts about it that fluxcp cant use this revision? because of the group_id
  24. yes, i executed the files from sql folder.. still loginlog table doesn't exist.. and what do you mean by defining in conf/inter_athena.conf?
×
×
  • Create New...