Jump to content

Ninja

Members
  • Posts

    513
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Ninja

  1. alright. and by the way, I was wondering why this was moved in the scripting section? @_@ well, thanks anyway I was supposed to write a separate one for scripting since I also need to know how to do it in the source side. and thanks for the answers
  2. I see. looking at script.c for query_sql, does it also allow you to write data into it? like UPDATE `ragnarok`.`char` SET `name`='Jezznar' WHERE `char_id`='150002'; will this be possible?
  3. Just wanna ask how to do SQL Querying. to be specific How to make an SQL Query to get a character's CharID from SQLdb? help will be very much appreciated.
  4. hi Marin, I dont really think it'll be possible since(correct me if I'm wrong) PACKETVER's are only used during compile time and not during runtime.. if you happen to try and take off preprocessors, you're gonna have to do a major change in the whole code. hi kazuya, download tortoiseSVN. install it. make sure your "trunk" folder is an SVN folder. then right-click on your "trunk" folder and choose tortoiseSVN->apply patch.
  5. well I dont really have it. but a few clicks from google would give you results. a link for the KoE script.
  6. oo.pero nagdaan din sa TXT version ang rAthena. tapos natanggal nung 15503 http://rathena.org/b...engine-removed/ so if you want to use a TXT-based rAthena, use releases before 15503.
  7. i suggest ito ang gawin mo since SQL based na ang rAthena.
  8. conf/battle/skill.conf // Does the delay time depend on the caster's DEX and/or AGI? (Note 1) // Note: On Official servers, neither Dex nor Agi affect delay time delay_dependon_dex: yes delay_dependon_agi: no try if it works sayo.
  9. fkkkkkkkkkkkk vs2010 crashes almost everytiiiiiimmmmmmeeeeeeeeee!

  10. Hi I just wanna ask which part of the source code is stat point distribution located? I've seen pc.c: (in this case for agi) pc_setparam section case SP_AGI: statlimit = pc_maxparameter(sd); sd->status.agi = cap_value(val, 1, statlimit); break; I wanted to mod the stat system so that a particular stat grows every level aside from having the player allocate statpoints. a hint about this and i'll do the rest
  11. that would depend on the bandwidth that your provider offers, the load that your server will process(ie # of users, etc.) if,say, worse comes to worst, intermittent connection form server to db would definitely affect your server's performance greatly since,if im not mistaken sqlDB's work with TCP connection. another thing is that, if your database and server reside far away from each other(as in far far away) delays in queries and writes on your database will also affect your server's performance. just my 2 cents
  12. Ninja

    Ola!

    thanks! by the way just a quickie, is there any of you havin probs regarding VS2010 crashing almost everytime?
  13. Ninja

    PNEUMA

    Hi, tried and tested battle.c find if( ( sc->data[sC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG ) || sc->data[sC__MANHOLE] ) replace with if( ( sc->data[sC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG && skill_num != RK_DRAGONBREATH ) || sc->data[sC__MANHOLE] ) screenshot: *The solution above works. Hope this solves your request
  14. He peopleperson49.what i meant was try to report it there since its a bug and you dont want to patch it by yourself
  15. Ninja

    PNEUMA

    Ok. So you want dragon breath be able to ignore pneuma? Isnt that already the case?
  16. Ninja

    PNEUMA

    can you please ellaborate? what is dragon blowing in the first place?
  17. learning how to do patches took me one heck of my patience lol. but it was fun :)

  18. hi try this. hope it helps. status.c find case SC_FREEZE: //Undead are immune to Freeze/Stone if (undead_flag && !(flag&1)) return 0; replace with case SC_FREEZE: //Undead are immune to Freeze/Stone or if UTSUSEMI is active if ((undead_flag && !(flag&1)) || sc->data[sC_UTSUSEMI]) return 0; be sure to recompile to your code.
  19. bump. fixed the problem on my mods. tried it several times before uploading. hope it helps.
  20. all patches redone. tested to work on 16625 several times before reposted. please follow the instructions in a strictly manner. no 3Ceam patches made(just see the patch themselves and try to convert it to 3Ceam) released: Custom.conf Framework Guild Mod (adjust min/max/guildextension skill) Disable/Enable SL + EDP hope you guys enjoy it. if there'd be problems, please post them. thanks. I'd appreciate good and bad comments.
  21. Ninja

    Ola!

    Hai! Just introducing myself to the community I'm new yeah~ but I've been playing ever since 2001[iRO beta] I used to play privates too~ and I'm passionate about developing lately so I decided that I will be doing some modification works but I'm still studying the whole rAthena structure and is reviewing/studying c++ I got some stuff up on the script release section but those are just the start~
  22. open mmo.h find #define MAX_AMOUNT 30000 change to #define MAX_AMOUNT 100 this will change the maximum amount of stacked items from 30000 to 100
×
×
  • Create New...