Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/03/13 in all areas

  1. We here at rAthena believe that the users have the right to know what our team believes this project should be. rAthena Goals: Emulation AccuracyOur top priority of this project should be put towards creating an experience that matches that of the official servers. Right now, we are far from reaching that goal, but with focus on this particular issue, and with the help of people like you, we can close the gap between the official servers and ourselves. While this may never reach 100% accuracy due to constantly changing aspects in official servers, we could definitely do better than where we are right now. StabilityWhile we continue to fix bugs and add additional new content, it is extremely important that we remain focused on creating a project you can rely on to manage itself while you are away from your server. We want you to feel comfortable walking away knowing that you won't come back to a downed server. Resource ConsumptionCode speed and resource reduction should remain a lower priority as accuracy and stability are more important than saving some memory or process time. A successful project requires this understanding. Sometimes we may improve code that we come across during fixing other bugs or re-writing sections of code, but at this time, we should not focus on finding and fixing some of the more resource consuming portions of code. CustomizationWe're "core" developers. We develop a platform for people to build off of. Out of the box, we aim to maintain parity with AEGIS, and beyond that, we will provide tools and support (as long as it doesn't detract from the core!) for people aiming to customize beyond that. Anything our users make and wish to have added to the public source also needs to be approved and improved on an individual basis. If you're looking to start up a server project which follows the above principles, then rAthena is the project for you.
    1 point
  2. Video Coming Soon Edit: January 2, 2014 Please pm me for more updated/recently changed about custom item, any update for this guide would be appreciated. Thank you 1st Step: go to: add your sprite for Example: Blood_Helm Blood_Helm 2nd Step: go to data Open idnum2itemdesctable idnum2itemdisplaynametable idnum2itemresnametable 3rd Step: go to This file is for drop 4th Step: goto This sign is for female account, "¿©" put the file here 5th Step: goto This sign is for male account "³²" put the file here 6th Step: go to data\lua files\datainfo Open accessoryid.lua as Notepad Open accname.lua as notepad And now you are done to client side now go to SVN go to svn/db/item_db2.txt Find this line and the 2nd Quote is for example you can add this part to the end of line. The last part of script you will see 1001 this is View ID, that you do earlier in accessoryid.lua Hope this will help you, don't forget to hit green button, Have a good day
    1 point
  3. typo... change to this if( !compare( "|"+.blacklist$+"|","|"+killedrid+"|" ) )
    1 point
  4. it have limitation too ...max 255 characters in length ...
    1 point
  5. here: 5206,Romantic_White_Flower,Romantic White Flower,5,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{} change to: 5206,Romantic_White_Flower,Romantic White Flower,5,20,,100,,0,,0,0xFFFFFFFE,63,2,4096,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{} note that: 1 in "0xFFFFFFFE,63,2,1" has become 4096 at "0xFFFFFFFE,63,2,4096" explained from doc/item_db.txt: 2^0 001 = Lower Headgear and 2^12 4096 = Costume Low Headgear
    1 point
  6. @Patskie your script doesnt work .. variable isnt initialized / trigger to save it. your OnNPCKillEvent will create multiple drop of items based on your black_list_mob array .. as well as several error will be shown.... - script Sample -1,{ OnInit: // blacklisted monsters .blacklist$ = "1002|1003|1004"; end; OnNPCKillEvent: getmapxy( .@map$,.@x,.@y, 0 ); if( !compare( "|"+.blacklist$+"|","|"+killedrid+"|" ) ) makeitem 607,5,.@map$,.@x,.@y; end; } certain MVP / Bosses wont be able to trigger this event since they have their own event label. ex. Bio Lab MVP....
    1 point
  7. try this http://rathena.org/board/topic/89245-2013-08-07aragexe-full-client-by-themon/
    1 point
  8. go to this: Trunk/src/map/battle.c find this : max_parameter Edit the 99 to ur desired lvl : { "max_parameter", &battle_config.max_parameter, 99, 10, 10000, }, Like this : { "max_parameter", &battle_config.max_parameter, 255, 10, 10000, }, Don't forget to recompile ====================================================================================== exp.txt? I think that's for eathena if im not mistaken.. If your using rathena : You are using one /oops edit it here : db\(pre-)re\job_exp.txt Make sure to edit it accordingly db\pre\job_exp.txt = for Pre - renewal db\re\job_exp.txt = for Renewal
    1 point
  9. Hello mr Sharpienero! Your youtube videos helped me a lot when i was starting my server!
    1 point
  10. OnInit: setarray .alphabets$,"V","E","N","D","I","N","G"; set .alphabets_size,getarraysize( .alphabets$ ); while( 1 ){ set .@title$,.@title$ + .alphabets$[.@i%.alphabets_size]; set .@i,.@i + 1; delwaitingroom; waitingroom ""+.@title$,0; sleep 100; if( .@i % .alphabets_size == 0 ) set .@title$,""; } end; just some minor mistake in variable name ....and array index
    1 point
×
×
  • Create New...