Jump to content

clydelion

Members
  • Posts

    754
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by clydelion

  1. Ano ibig mo sabihin? Yung sasabihin ang name nung naka basag sa woe? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/guild/agit_main.txt search mo announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by the [" + getguildName(.@GID) + "] guild.",bc_all|bc_woe; gawin mong announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by [" + strcharinfo(0) + "] of the [" + getguildName(.@GID) + "] guild.",bc_all|bc_woe; tas yung dalawang sleep sa taas, gawing sleep2
  2. I think this is the one you are looking for. It adds a separate setting for MVPs. http://rathena.org/board/topic/61883-mini-mvp-and-mvp-card-drop-rate/#entry93786
  3. I noticed that this is the first time you are setting up your patcher, I suggest using Thor Patcher right away instead of using neoncube now(saves you the trouble) and go Thor patcher later.. Neoncube is old, and uses legacy patching technique. This is just my 2 cents.
  4. There's an instance of rathena already running on that port. run this.. ./athena-start restart
  5. That's not the item that gives you the error.
  6. File: mob.c Look for the mob_dead function.. if(flag) { if(base_exp && md->dmglog[i].flag == MDLF_HOMUN) //tmpsd[i] is null if it has no homunc. merc_hom_gainexp(tmpsd[i]->hd, base_exp); if(base_exp || job_exp) { if( md->dmglog[i].flag != MDLF_PET || battle_config.pet_attack_exp_to_master ) {#ifdef RENEWAL_EXP int rate = pc_level_penalty_mod(tmpsd[i], md, 1); base_exp = (unsigned int)cap_value(base_exp * rate / 100, 1, UINT_MAX); job_exp = (unsigned int)cap_value(job_exp * rate / 100, 1, UINT_MAX);#endif pc_gainexp(tmpsd[i], &md->bl, base_exp, job_exp, false); } } if(zeny) // zeny from mobs [Valaris] pc_getzeny(tmpsd[i], zeny, LOG_TYPE_PICKDROP_MONSTER, NULL); }
  7. Can you login or that timeout happens every time you try to login?
  8. What mod to make now? :/

  9. ooops. I meant config folder. Inside it should be a bunch of php files. http://fluxcp.googlecode.com/svn/branches/fluxcp-1.0/config/
  10. Index: clif.c =================================================================== --- clif.c (revision 17128) +++ clif.c (working copy) @@ -10061,7 +10061,10 @@ clif_wis_end(fd, 3); // 3: everyone ignored by target return; } + if (pc_get_group_level(dstsd) == 99){ + clif_wis_end(fd, 1); // 1: target character is not logged in + return; + } // if player is autotrading if( dstsd->state.autotrade == 1 ) { char output[256];
  11. If you didn't know yet, FluxCP does this. https://code.google.com/p/fluxcp/ https://github.com/calciumkid/fluxcp-renewal https://github.com/missxantara/fluxcp-ra
  12. A simple explanation on why rathena is actively developed compared to eathena is that, eathena is pretty much complete(official servers are already renewal).
  13. If you want a traditional server, use eathena instead. Rathena focuses more on renewal content. If you want it to be as close to the official server as possible, then don't change anything aside from the network settings.
  14. You can do it yourself, it is fairly easy.. try this one.. http://rathena.sourceforge.net/tools/diff_patcher.php Or use WeeDiffPatcher if you want to use a newer exe. Patcher - http://rathena.org/board/topic/53420-shins-diff-patcher/ EXEs - http://svn6.assembla.com/svn/ClientSide/Diff_Project/kRO/RagexeRE/2012/
  15. Choose from here. http://svn6.assembla.com/svn/ClientSide/Diff_Project/kRO/Sakexe/
  16. Do you have any itemscript errors while the map-server is loading?
  17. Yes, do what I said above. http://upaste.me/raw/b741537463091140
  18. You probably deleted error.php from 'application' folder.. Can you verify this?
  19. clydelion

    Confused

    Use one of the free designs from the downloads section or buy one from those in the paid section.
  20. You can make a new SC_, then add a check in the "skillnotok" function if that status is applied to the character. e.g. skill.c if (pc_has_permission(sd, PC_PERM_SKILL_UNCONDITIONAL)) return 0; // can do any damn thing they want + if( sd->sc.data[SC_NOSKILL] ) + return 0; if( skill_id == AL_TELEPORT && sd->skillitem == skill_id && sd->skillitemlv > 2 ) return 0; // Teleport lv 3 bypasses this check.[Inkfish] You'll have to exclude this new SC from being removed when relogging/status clearing skills are used against the character. another way is to make a new flag.. but relogging will remove the flag.
  21. From what I've understood on your post, it should be this way md->faction_id = pc_readglobalreg( sd, "pvpteam" );
  22. Make sure na tama yung encoding na sinet mo sa thor generator. Kapag ASCII, yan yung may directory of files na magulo yung sulat like ¸¶¹ý»ç_¿©, pag unicode naman, kapag may korean files names o kaya mga squares na character.
  23. I can't reproduce this.. You can use this in the latest rathena source, just apply the necessary patches manually. I cannot update my mods for every revision, unless people can't apply it manually anymore (because of too much difference with source codes). :/ EDIT: Oh well, the structure has been changed for most of the part during rev. 17119. Updated.
  24. If you already have a host, it shouldn't take 30 minutes to get everything up. Unless of course, if you have custom modifications within the server mechanics, it would take a few more time.* ^this applies only to a perfect rathena environment, where all the people doesnt have a life and are in front of their respective pc/laptop all day.
×
×
  • Create New...