Jump to content

Mystery

Members
  • Posts

    2192
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Mystery

  1. Officially, you're not supposed to view the MvP and Mini Boss HP. However, change it to your liking by finding this line in the source: #if PACKETVER >= 20120404 if( src->type == BL_PC && !(md->status.mode&MD_BOSS) ) clif_monster_hp_bar(md, ((TBL_PC*)src)->fd); #endif https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/mob.c
  2. You didn't search properly because there's already a lot of topics and posts regarding Lua//Lubs. For instance, check the Client Releases/Support.
  3. Are you sure you're a regular player? or are you a GM character? Secondly, what's your revision?
  4. How so? o_O Wow.. I would love to actually see this now. o_o Whole new quests to do now dang. Didnt they do this last Maintenance? We're gonna need to add this effect in - Changed Giearth card to properly provide immunity to chaos status from Shadow Chaser skill: Chaos Panic.
  5. I advise you to use the search function please : http://rathena.org/board/topic/68841-how-to-fix-this-star-glad-skill-like-union/#entry127476 You would wanna look at this part of the code: if( sc ) { //SG_FUSION hp penalty [Komurka] if (sc->data[sC_FUSION]) { int hp= sstatus->max_hp; if (sd && tsd) { hp = 8*hp/100; if (100*sstatus->hp <= 20*sstatus->max_hp) hp = sstatus->hp; } else hp = 2*hp/100; //2% hp loss per hit status_zap(src, hp, 0); } https://rathena.svn....rc/map/battle.c
  6. What I mean is that.. changes you've made to a specific file.. you take those changes you've made and apply them to your clean working file. For example, you have changes done in battle.conf - I'm advising you to take those changes you've done and applying them to your new and working battle.conf instead of dragging, and dropping (replacing) the old battle.conf over the new battle.conf. You just never know what things have been changed within files and you just replacing the old with the new will give you errors. In conclusions, it's better for you to take the changes you've made and apply them rather than dragging and dropping (replacing) the old with the new.
  7. For your custom mobs, the map server is stating that you don't have enough columns inside your custom mobs lines.. you need a total of 57 and you don't have that many. What you need to do is count the columns rAthena has in the mob_db and make sure you add any missing columns to your custom mob scripts. ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,Range1,ATK1,ATK2,DEF,MDEF,STR,AGI,VIT,INT,DEX,LUK,Range2,Range3,Scale,Race,Element,Mode,Speed,aDelay,aMotion,dMotion,MEXP,MVP1id,MVP1per,MVP2id,MVP2per,MVP3id,MVP3per,Drop1id,Drop1per,Drop2id,Drop2per,Drop3id,Drop3per,Drop4id,Drop4per,Drop5id,Drop5per,Drop6id,Drop6per,Drop7id,Drop7per,Drop8id,Drop8per,Drop9id,Drop9per,DropCardid,DropCardper Is your server in Renewal mode? /// renewal drop rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item drop rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied /// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table #define RENEWAL_DROP The drop system for Renewal servers are a lot different than Pre-renewal. Also, we do have a Spanish support section you could feel comfortable in: http://rathena.org/board/forum/76-spanish-support/
  8. Mystery

    mapflag

    It's very easy. You follow what is already mentioned in the file: // The equipment/items/cards restriction file // here you define which items may not be used at PvP / GvG // format: <item id>,<mode> // mode // 1 - restricted in normal maps // 2 - restricted in PVP // 4 - restricted in GVG // 8 - restricted in Battlegrounds // Restricted zones - they're configured by 'restricted <number>' mapflag // 32 - restricted in zone 1 // 64 - restricted in zone 2 // 128 - restricted in zone 3 // 256 - restricted in zone 4 // 512 - restricted in zone 5 // 1024 - restricted in zone 6 // 2048 - restricted in zone 7 //Examples: //1201,1 you can't use KNIFE(ID 1201) on normal maps //608,4 you can't use Yggdrasil Seed(ID 608) on both GvG and WoE Castles //4174,6 Forbid Deviling Card in every PVP or GVG map, and during woes. //501,32 you can't use Red Potion on map marked as 'restricted zone 1' //502,64 you can't use Orange Potion on map marked as 'restricted zone 2' //503,128 you can't use Yellow Potion on map marked as 'restricted zone 3' // you can even mix modes //519,322 (256+64+2) you can't use Milk on PVP, and maps marked as 'restricted zone 2' and 'restricted zone 4'
  9. Personally, I would suggest to never copy & replace over files. You're gonna end up getting a lot of conflict between files down the road. I suggest you only copy the changes you've made to a specific file and then paste them over.. never copy and replace the entire file/folder.
  10. Mystery

    Low Damage

    Don't forget formulas for Renewal servers are a lot different than servers using pre-renewal formulas.
  11. Yes it is. It's your client's Packet version conflicting with the servers. What's your client's date? What date did you set in your .../src/common/mmo.h? What's your version in packet_db?
  12. There's this: http://rathena.org/board/topic/66962-basic-complete-renewal-data-english-folder/page__st__120
  13. I find Harmony to be the best valuable source of protection. However, iROnic, I doubt that's even possible since really, you would have to temper with your client and the way harmony is set up, if the server detects modifications from your client the server wont allow you to login.
  14. Mystery

    mapflag

    No skills: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/mapflag/noskill.txt For stoping mount.. disable @mount or disable renters to not allow mounting. Since, players get the mounts through renters or @mount
  15. Not really. Its more like (maybe) the same reasons other mmorpg's out there raise the level cap every once in a while to make room for adding higher level monsters, equips that requires a higher level, easier expansion for adding more new content. is rAthena and 3CeaM will increase the max level cap too? o_o?... for official servers.. they've capped their Max Level to 160.. just like how in private servers we cap our base level to a certain level Lol.
  16. Make sure your character isn't a GM when you've "tested it". If you're using a Flywing in a map that has noteleport activated, Flywing wont work. However, GMs can bypass mapflags.
  17. The description of the status icon is located in your Client Side file - this to be more specific: http://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
  18. Mystery

    Random Offlines?

    Since your server isn't giving any errors and it's your control panel, I'll move the topic. However, what kind of Flux are you using? Theres a FluxCP thats intended specifically for rAthena.
  19. http://www.3ceam.org...-to-a-end-soon/ No point. rAthena is already integrated with all Third Job classes, new Mounts, and Kage & Obo. What exactly would be the point? Rytech already mentioned in the above link that 3CeAM is dying.
  20. You could always try this one: http://rathena.org/board/topic/64816-beta-2-faction-system/
  21. Did you make sure to recompile your source? O-o
  22. eAthena already has this function: enum item_itemid { ITEMID_EMPERIUM = 714, ITEMID_YELLOW_GEMSTONE = 715, ITEMID_RED_GEMSTONE = 716, ITEMID_BLUE_GEMSTONE = 717, ITEMID_TRAP = 1065, ITEMID_STONE = 7049, ITEMID_SKULL_ = 7420, ITEMID_TOKEN_OF_SIEGFRIED = 7621, }; http://eathena-project.googlecode.com/svn/trunk/src/map/itemdb.h ITEMID_TOKEN_OF_SIEGFRIED = 7621
  23. Referring to this: by making everyone be muted.. no one would be able to use any skills. Also, to do such a script.. you would have mute each player through your PvP warper. Also, there's no specific script command to allow everyone a map to be muted.. theres only an atcommand known as: mutearea: Mutes every player on screen (admin command) but this will only work if it's evoked on a player.
  24. Mystery

    Low Damage

    If it's low damage already, revert your Nerfs you've made? o_O
  25. You should always refer to rAthena's Wiki whenever you come across errors: http://rathena.org/wiki/index.php?search=installing&title=Special%3ASearch there could be guides to solving your problem. Also, the search function on the boards too.
×
×
  • Create New...