Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. if you dont know how to compile, you can simply use this... https://subversion.a...a_Project/lubs/ there are ready use LUB files.... copy the lub files just put it in your data folder.. data\luafiles514\lua files\.............. and merge it into your GRF... make sure your client didnt read data folder....
  2. you can try apply this diff if you want.. http://trac.rathena.org/changeset/16471/rathena not really sure this is compatible with 3ceam or not... make sure you backup before apply... if this cant work...try the original file post by ToastOfDoom in eA there...
  3. it work fine at my test server.....
  4. which korean text you refer to ? certain items or skills name / description didnt translated yet.. certain features is hardcoded in client..unable to translate through lua/txt file...
  5. it only work for those who are in the same map.....
  6. you can refer to post#2 just change the variable if it is not the variable that used to save the password...
  7. lua files\spreditinfo\...........
  8. you have limited your minimum and maximum drop rate for the card... item_drop_card_min: 500 item_drop_card_max: 500 ... anyway...if you want it to fixed at 15% for all card item_drop_card_min: 1500 item_drop_card_max: 1500
  9. try this again fixed wrong variable
  10. for party.... getpartymember getcharid(1); set .@Count,0; for( set .@i,0; .@i < $@partymembercount; set .@i,.@i + 1 ){ getmapxy( .@Map$,.@X,.@Y,0,$@partymembername$[.@i]; if( .@Map$ == "MAPNAME" ) set .@Count,.@Count + 1; } announce "Total of "+.@Count+" Player in this Map.",0; end; for guild....use SQL since we didnt add a official getguildmember command in rAthena.. or maybe you can do it yourself.. just copy the code for getpartymember..and edit it so it return the value you want....
  11. @Chobits235... LOL..take a look on previous post also ?
  12. maybe the other items...the rate is very low ?
  13. what emulator you are using ? revision ? any custom mod/edit in src ?
  14. OnPCLoginEvent: playBGM "<BGM filename>"; end; but i dont think there is a way for you to set BGM volume through script command...
  15. yes variable only......doesnt support for passing an arrays into the function.... but there is still alot way for you to pass the value of an array into the function....
  16. yes ..it should...as long as 3Ceam using the same variable... beside...whether it work or not...just copy the script and run it in your server then you will know it work or not....
  17. the current 1 doesnt support putting a rank in the display list..... if you want..then you have to edit the script ...... change all .GM_Level to .GM_Level$ then..change this line set .GM_Level[ getarraysize( .GM_Level ) ],getgmlevel(); to if( getgmlevel() < 10 ) set .GM_Level$[ getarraysize( .GM_Name$ ) ],"Level 1 GM"; else if( getgmlevel() < 20 ) set .GM_Level$[ getarraysize( .GM_Name$ ) ],"Level 2 GM"; else if( getgmlevel() < 30 ) set .GM_Level$[ getarraysize( .GM_Name$ ) ],"Level 3 GM"; else if( getgmlevel() < 40 ) set .GM_Level$[ getarraysize( .GM_Name$ ) ],"Level 4 GM";
  18. did you already run and used this script with the setting once ? set .Based,0; // [ 0 - Account Based / 1 - Character Based ] if yes...then it would never run in for that account anymore....unless you removed that Variable that stored in the character or set the value to 0. #ClassHelper open ur SQL database..and search for the variable..and remove it..... or use this... set #ClassHelper,0;
  19. http://pastebin.com/raw.php?i=Qc5wAHXF
×
×
  • Create New...