Jump to content

LCDTheOG

Members
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by LCDTheOG

  1. that was my guess, but my max lvl isnt 20 its 15 so i guess just change it to 15 xD hmm that almost did it i'll post a release on all the changes i did so it could be an actual release, i'll include u guys in it as well thanx for the help tho, sorry for turning the topic into a support topic xD i actually got it working tho no worries
  2. hmm i removed that line, and it uhh still doesnt bring it into the menu, i think its probably located in clif.c since thats where it brings up the menu for weapon refine right? after it hits +10 the menu doesnt have it selectable.
  3. omg ty for quick reply , i'll tell u if it does, and @jhedzkie yes lol its hard to find it but its on line 13kish of skill.c i'll edit this post with an update if it works Update: yay it works, one more thing if its not too much trouble, where would i edit to make the skill weapon refine refine past +10 xD?
  4. so yeah i got this working, lol now my next problem is, what do i need to put on this per = status_get_refine_chance(ditem->wlv, (int)item->refine); per += (((signed int)sd->status.job_level)-50)/2; //Updated per the new kro descriptions. [skotlex] pc_delitem(sd, i, 1, 0, 0, LOG_TYPE_OTHER); if (per > rnd() % 100) { for it to check if SC_SPROTECT is my current status. lol yeah this is the skill.c file for weaponrefine, but when i activate sprotect, the item still breaks so i'm guessing it needs to go right before pc_delitem(sd...etc, an if( sc_sprotect = 1){ yada yada yada} i'm kind of new to sourceing so yeah if any of u can help it would be great
  5. Ive never gotten connected to a 2011-11-22+ client. so if u figure this out id be glad to read it.
  6. its in mapflag, you need to put the "mf_loadevent" map flag on the map that u want to make people nude :X, which can also be done via scripting. example: OnInit: setmapflag "prontera",mf_loadevent; end;
  7. or put it into a codebox [code]Text goes here [/code], i cant even read it :X
  8. you could edit the coding of ipboard/phpbb and make it input data into both the ragnarok table and ipboard/phpbb..
  9. ajax was messing up yesterday, it got so bad i kept having crashes.
  10. lol, if u know assembly language go right ahead, google: hex workshop
  11. so yeah i applied this patch, and nothings happening i put the itemscript inside of an item that is useable as healing, and useable as other and still not working :C. maybe i missed something?
  12. hey guys, i thought since we have a @feelreset, might as well add an @hatereset ne ways here it is open your src/map/atcommand.c and search out this line ACMD_FUNC(feelreset) you should see something like this /*========================================== * Feel (SG save map) Reset [HiddenDragon] *------------------------------------------*/ ACMD_FUNC(feelreset) { pc_resetfeel(sd); clif_displaymessage(fd, "Reset 'Feeling' maps."); return 0; } and right after the part that says "}" put in this ACMD_FUNC(hatereset) { pc_resethate(sd); clif_displaymessage(fd, "Reset 'Hatered' mobs"); return 0; } then search out the line ACMD_DEF2("newmount", new_mount), and directly under that line put ACMD_DEF(hatereset), NOTE: if you have any other custom commands added just put it right below the most recent one. ne ways hope you guys like it ^-^
  13. oh i found a fix for the problem with aura, go check back on the thread
  14. so yeah, like the topic says its not showing to other players, im using client 2011-03-15a, its diffed to show aura over lvl 99 and 150, ive changed my client.conf multiple times, set max_lv and aura_lv to 99, then to 200(my max lvl is 200), also changed it in the battle.c { "max_lv", &battle_config.max_lv, 200, 0, 200, }, { "aura_lv", &battle_config.aura_lv, 200, 0, INT_MAX, }, { "max_lv", &battle_config.max_lv, 99, 0, 200, }, { "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, }, { "max_lv", &battle_config.max_lv, 99, 0, 200, }, { "aura_lv", &battle_config.aura_lv, 99, 0, 200, }, { "max_lv", &battle_config.max_lv, 99, 0, 99, }, { "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, }, ive tried many combinations with this and the client.conf and to no avail can i see other players aura's im starting to think this may be a bug unless somone can shed some light upon the matter :/ P.S. i can see my own aura over lvl 99 all the way up to 200 but no one else can see my aura after lvl 99, when i hit lvl 99 they can, but after another lvl no more aura okay Thanx to my good friend Plankt i figured out how to get this bastard working Step 1: change the values in your battle.c to this and recompile. { "max_lv", &battle_config.max_lv, 99, 0, 127, }, { "aura_lv", &battle_config.aura_lv, 200, 0, 200, }, Step 2: Change the values in your client.conf to this max_lv: 99 aura_lv: 200 client_limit_unit_lv: 1 and diff your client to have enable aura over lvl 99 and 150. and all should work correctly Hope this Helps anyone. Thanx Plankt!!!
  15. how old is your server?, those settings look like they are using an old eathena.
  16. this will need an updated source, because i believe third jobs weren't even working at that revision. its the only way, i dont see why u cant update ur svn lol. yeah u have an old version that wont update to the latest, thats why u grab a new one.
  17. wait, so your trying to make it so when somone slots equipment it changes colors?, if this is possible id like to know Euphy's statement didnt make sense to me... also if this is possible, would it be possible to make it change color by refine rate?
  18. i usually just search google where free sprites are , or if ur lucky come accross a dead server(one thats been offline for 2 years+) and just use theirs. make sure u credit the person whoever made the sprite, even if the server is down.(usually they encrypt them like that :X)
  19. D=, did u download the basic rAthena client and pack it into a grf and all that
  20. well dave, i have an aura problem as well XD, if you want an aura to show over lvl 99, u need to set ur max_lv,aura_lv in conf/battle/client.conf to the max lvl of your server, if it exceeds lvl 127, you need to go into src/map/battle.c and find these lines { "max_lv", &battle_config.max_lv, 99, 0, 127, }, { "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, }, and change it to for example if your max level of your server is 200 { "max_lv", &battle_config.max_lv, 200, 0, 200, }, { "aura_lv", &battle_config.aura_lv, 200, 0, INT_MAX, }, (don't forget to recompile ) then set the values in the client.conf file to the max level of your server, However this will only let you see your aura at max level, other people won't see your aura. before u ask how to fix that look into the topic i posted yesterday and post on that saying u have the same problem so people will answer it for us (Aura not showing over lvl 99 its in the same section as this topic)
  21. when it cretes the error, hit show bug report and tell us what it says lol.
  22. is your client diffed to read datafolder first?, if not, make sure the option info isnt inside of your grf. also make sure that the /nm /nm2 isnt diffed inside of your client as well...
  23. try making ur lines to 10 on chat spam, remove hklm to hkcu,remove skip ressurection, and remove plain descriptions, and see if it works.
  24. why did u post a blank config.ini, we wanted the one that had all ur settings ._., post YOUR config.ini, not a blank one.
  25. ewww grf factory D: ive had cases of that thing leaving out some files upon repack, i suggest checking out grfbuilder instead... and for ur patching problem, thor comes with a patch generator, u should be packing .thor files not .gpf files o_O
×
×
  • Create New...