Jump to content

gekigengar

Members
  • Posts

    174
  • Joined

  • Last visited

Everything posted by gekigengar

  1. Guys you really need to go back to first page and read again the developer's opinions about that. His main goal is to learn and develop, if it goes open source then it will be released faster that's a given, but he won't learn all he wanted! Give him a break.. Not when such progress is threatened to be lost. All I pray for everyday has been for Shinryo to still continue developing this. Its our only hope for a Custom RO client!
  2. I prototyped a kRO to jRO mob_db converter. basing on information provided by jRO from doodler http://ro.doddlercon.com/home/?p=124 Nevermind this thread, problem solved.
  3. I prototyped a kRO to jRO mob_db converter. basing on information provided by jRO from doodler http://ro.doddlercon.com/home/?p=124 Nevermind this thread, problem solved.
  4. I have tried many ways to enable it, starting from uncommenting all related db files, I have yet to see the skill available. How do I enable this? Its skill ID 314 BD_RAGNAROK. I remember that its an ensemble skill that existed long ago.
  5. thank you, that solves everything!
  6. So how do I refer to a warp NPC? for example.. yuno_fild04,251,21,0 warp ein001 1,1,ein_fild06,252,363 ein_fild06,252,365,0 warp ein001a 1,1,yuno_fild04,251,23 do I just create them, then "disablenpc ein001" after creating them? What if they are created on different script file? is that still okay?
  7. I am making a dungeon that has 2 entrance, one entrance only appear at morning, and the other at night. (The entrance is using regular field warps) (So I am guessing it will be using the OnClock function.) (Day starts after 01:00) (Night starts at 20:00) OnInit: if (Time is > 20:00 or Time < 01:00) { // Enable night field warp. } else { // Enable day field warp. } end; OnClock2000: //On 8 PM // Enable night field warps. // Disable day field warp. end; OnClock0100: //on 1 AM // Disable night field warp // Enable day field warp I get the main Idea, but how do I put these into script? Thanks Brian for editing! (I am not sure why my Mozilla browser failed to post the original post with the tags.)
  8. Thanks its now fixed Idk why bigger map fixed it, but the maker should do something about it :/
  9. So how do I copy a map to a bigger map? I must redo the whole thing?
  10. I have been creating maps, it worked fine in browEdit, but it has been showing black dots in-game. I thought that it was my lightmap errors, I exported the Lightmap and expected black dots to be fixed, But then when it was exported, the lightmap is silky smooth :/ Anyone can fix this..? (It is hard to see, kindly zoom a little to see.) Water is at -20 (No water on map).
  11. So Can I still use SVN to checkout from the GIT Link? http://rathena.org/board/topic/87120-transitioning-from-svn-to-git/?p=227682 According to Akinari, I could
  12. I haven't updated since rathena moved to GIT (I have tried many times, I crai everytyme ;_;, the interface is too confusing! I really prefer SVN.) If I copied the entire script.c from the newest, will it conflict with other files? (Since I don't really want to update the server yet...) (Because I can proudly say that I can't) (If only GIT developer were as considerate to make it more user-friendly as SVN.. that would be great!) EDIT : Uh oh.. I replaced my entire script.c encountered even more errors! I think my server is done for! 1>c:\rathena\src\map\script.c(6462): error C2065: 'IT_SHADOWGEAR' : undeclared identifier 1>c:\rathena\src\map\script.c(6477): error C2065: 'IT_SHADOWGEAR' : undeclared identifier 1>c:\rathena\src\map\script.c(6644): warning C4020: 'itemdb_searchrandomid' : too many actual parameters 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_ARMOR' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_WEAPON' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_SHIELD' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_SHOES' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_ACC_R' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(7358): error C2065: 'EQP_SHADOW_ACC_L' : undeclared identifier 1>c:\rathena\src\map\script.c(7358): error C2099: initializer is not a constant 1>c:\rathena\src\map\script.c(11311): error C2039: 'mob_id' : is not a member of 'mob_data' 1> c:\rathena\src\map\mob.h(114) : see declaration of 'mob_data' 1>c:\rathena\src\map\script.c(15015): error C2065: 'ITEMSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15015): error C2065: 'POINTSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15022): error C2065: 'ITEMSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15022): error C2065: 'POINTSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15049): error C2065: 'ITEMSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15049): error C2065: 'POINTSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15078): error C2065: 'ITEMSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15078): error C2065: 'POINTSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15109): error C2065: 'ITEMSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(15109): error C2065: 'POINTSHOP' : undeclared identifier 1>c:\rathena\src\map\script.c(16954): error C2039: 'mob_id' : is not a member of 'mob_data' 1> c:\rathena\src\map\mob.h(114) : see declaration of 'mob_data' 1>c:\rathena\src\map\script.c(17538): warning C4020: 'itemdb_searchrandomid' : too many actual parameters 1>c:\rathena\src\map\script.c(17547): warning C4013: 'itemdb_get_randgroupitem_count' undefined; assuming extern returning int 1>c:\rathena\src\map\script.c(17583): warning C4013: 'itemdb_pc_get_itemgroup' undefined; assuming extern returning int 1>c:\rathena\src\map\script.c(18063): error C2065: 'VIP_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18064): error C2065: 'MIN_STORAGE' : undeclared identifier 1>c:\rathena\src\map\script.c(18206): error C2039: 'mon_trans_disable_in_gvg' : is not a member of 'Battle_Config' 1> c:\rathena\src\map\battle.h(111) : see declaration of 'Battle_Config' 1>c:\rathena\src\map\script.c(18218): error C2065: 'SC_MONSTER_TRANSFORM' : undeclared identifier 1>c:\rathena\src\map\script.c(18219): error C2065: 'SC_MONSTER_TRANSFORM' : undeclared identifier 1>c:\rathena\src\map\script.c(18263): error C2065: 'MAX_PC_BONUS_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18263): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18263): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18263): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18263): error C2198: 'strcmp' : too few arguments for call 1>c:\rathena\src\map\script.c(18264): error C2065: 'MAX_PC_BONUS_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18275): error C2065: 'MAX_PC_BONUS_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18275): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18276): error C2065: 'MAX_PC_BONUS_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18277): error C2065: 'MAX_PC_BONUS_SCRIPT' : undeclared identifier 1>c:\rathena\src\map\script.c(18282): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18282): warning C4090: 'function' : different 'const' qualifiers 1>c:\rathena\src\map\script.c(18282): warning C4022: 'memcpy' : pointer mismatch for actual parameter 2 1>c:\rathena\src\map\script.c(18282): error C2198: 'memcpy' : too few arguments for call 1>c:\rathena\src\map\script.c(18283): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18284): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18285): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18286): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18287): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18289): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18290): error C2039: 'bonus_script' : is not a member of 'map_session_data' 1> c:\rathena\src\map\pc.h(131) : see declaration of 'map_session_data' 1>c:\rathena\src\map\script.c(18290): error C2198: 'clif_status_change' : too few arguments for call *Enters Panic State* *Run around havoc in my room* *Rolls around* *Crai everytyme*
  13. Is that in script? or in the char.c itself?. somehow I cannot find any documentation of the function pc_setdir(sd,b,h). Anyway you can tell me how to use it in my case? Thank you for replying! Thats amazing This should be official! Thanks a bunch! EDIT : Somehow I am getting errors. 1>c:\rathena\src\custom\script.inc(40): error C2065: 'SCRIPT_CMD_SUCCESS' : undeclared identifier 1>c:\rathena\src\custom\script.inc(58): error C2065: 'SCRIPT_CMD_SUCCESS' : undeclared identifier I crai ;_;
  14. I support this Idea. Clones should have the equipments, skills, and status of the player. And I don't know why you couldn't clone someone when they aren't online o.o It would be great if this is improved!
  15. While this may seem trivial, but this is extremely important for my server. When a player create a character, it started by facing "backwards", or "North". I wanted the new character to be facing "South", I know it is somewhere in the "Char.c" But how do I do this..? I do not see any "Direction" option that is set when a new character is created. Thank you!
  16. why not post this to the international section where most developers are?It mentioned about "luk" factor towards item drops, but the only thing I can find in relation is the "luck" can modify drop rates, but not to the point that it could be anyhow gamebreaking. (depends on server settings though,) in official, this is turned off. probably those cheaters could send a fake value and ensures a legitimate 100% drop rate through faking their "luk" packet value? this is not possible though, as they take the value from the server's sql database. probably by removing this feature this can be fixed? I don't even think the issue is the "luk" that they mentioned. it should be regarding something else.
  17. What is this about? Any relevant links to the said issue?
  18. I am looking for jRO's spawns and mobDB, which is a lot more interesting than kRO's. (They keep the pre-renewal style of mob distribution.) (There is no fields for "Certain Level", weak looking mobs are weak, strong ones are strong.) Anyone has it?
  19. I never tried converting them, but It shouldn't be too hard with milkshape/3ds max (They can read .mdx files and export them) You need wc3Viewer (Freeware) to extract models and texture from wc3.mpq file. The harder part is their animations I think.
  20. Why not open this up on GitHub? Gravity licensing issues? They allowed private server to run based on their assets. with a different emulator. This also uses gravity assets to run, with a different emulator. I think this should be fine and million times faster.
  21. Nevermind, Solved. Found out myself reading some script. Code Draft : OnNPCKillEvent: if ( getmonsterinfo( killedrid,MOB_MODE ) & 0x0020 ) { This checks for Boss. if( getmonsterinfo( killedrid,MOB_MVPEXP ) { This checks for MVP
  22. So I just need to copy the whole "svn co https://github.com/rathena/rathena/trunk" on SVN checkout?
  23. What I wanted is so that it refers back to the "Original File" to check for "red exclamation marks" (Changes). Instead of refering back to the "Last saved stash" to check for changes. (Which is why its all green even with my changes.) I want it to compare with the original rathena file instead of my last saved stash. please help!
  24. I recently moved from SVN to GIT. When I tried to update my server, It tells me to stash the server, so I did. When I stashed the server, all the red exclamation (!) telling me what I have changed from the original rathena files dissapeared into green checks. How do I refer the changes back from the "original rAthena" instead of my "Last Saved Stash"?. It is very hard knowing what I have changed recently Please, I need those red exclamation back..!
×
×
  • Create New...