Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. you could do a query to retrieve all information if you have the log_login option enabled.
  2. 18000?? O__O lol , i dont think the source would allow you to use that value as mob id. there are limitation of mob id by default. you have to raise the max mob setting in the source before you can use such a high mob id.
  3. use npc scope variable to define your array. setarray .iparr$,"null"; .@arrsize = getarraysize( .iparr$ );
  4. follow the installation constructions. //===== Comments ============================================= //= You need to edit the following line in the // npc/guild/agit_template.txt //========== Find this ==========// /* // Adjust Economy Invest Level for Castle set .@Economy,GetCastleData(strnpcinfo(2),2) - 5; if (.@Economy < 0) set .@Economy, 0; //========== Add above ==========// // Callfunc for Guild Rank System callfunc "GLD_RANK_WOE"; //= WoE:SE : Open these file under npc/guild2/ arug_cas02.txt arug_cas04.txt schg_cas01.txt schg_cas03.txt schg_cas05.txt arug_cas01.txt arug_cas03.txt arug_cas05.txt schg_cas02.txt schg_cas04.txt //========== Find this, which only shows up once every file. =========// mapannounce "arug_cas01","The emperium has been shattered!",bc_map,"0x00FF00",FW_NORMAL,20,0,40; // ------- or -------- // announce "The emperium has been shattered!",bc_map,"0x00FF00",FW_NORMAL,20,0,40; //========== Add after ==========// // Callfunc for Guild Rank System callfunc "GLD_RANK_WOE"; */ //============================================================
  5. OnClock0000: OnClock0600: OnClock1200: OnClock1800: // event start
  6. obviously it blocked you from running 2 clients at the same time.
  7. https://rathena.org/board/files/file/2766-grf-editor/
  8. if ( countitem( 678 ) >= 255 ) warp "prontera",155,181; end;
  9. So the content in first post is actually a scam from other person and not @Functor ?? I will lock this to avoid confusing other members. To other members, Please PM @Functor in this forum or through his Skype: functor.x if you're interested with the products. My advise, please validate who is the actual product owner before you purchase anything from anybody. Thank you.
  10. explain 'NOT WORKING' ... there are million of reason for it to not work in your server. it could be the files corrupted or you installed wrongly.
  11. data/lua files/luafiles514/stateicon/stateiconinfo.lub
  12. just remove the extra bracket ... if ( getmapflag( .@map$,mf_pvp ) || getmapflag( .@map$,mf_gvg ) ) {
  13. if ( getgmlevel() < 10 && ( getmapflag( .@map$,mf_pvp ) || getmapflag( .@map$,mf_gvg ) ) ) {
  14. if ( getgmlevel() < 10 && ( getmapflag( .@map$,mf_pvp ) ) || getmapflag( .@map$,mf_gvg ) ) ) {
  15. https://github.com/rathena/rathena/blob/master/npc/custom/quests/hunting_missions.txt
  16. - script atcommand_main -1,{ OnAtStorage: .@map$ = strcharinfo(3); if ( getmapflag( .@map$,mf_pvp ) ) || getmapflag( .@map$,mf_gvg ) ) { dispbottom .@atcmd_command$+" failed in PVP/GVG maps"; } else { openstorage; } end; OnAtLoad: .@map$ = strcharinfo(3); if ( getmapflag( .@map$,mf_pvp ) ) || getmapflag( .@map$,mf_gvg ) ) { dispbottom .@atcmd_command$+" failed in PVP/GVG maps"; } else { warp "SavePoint",0,0; } end; OnInit: bindatcmd "storage",strnpcinfo(3)+"::OnAtStorage"; bindatcmd "load",strnpcinfo(3)+"::OnAtLoad"; end; }
  17. .@possible_char$ = "1234567890" + "qwertyuiop" + "asdfghjkl" + "zxcvbnm"; .@size = getstrlen( .@possible_char$ ); for ( .@i = 0; .@i < 10; .@i++ ) .@string$ = .@string$ + charat( .@possible_char$, rand( .@size ) ); mes "Random String = "+.@string$ ;
  18. just setup a cashshop and sell these badges using cashpoint =D
  19. there exist different types. http://www.divine-pride.net/database/item?Name=Cooked+Nine+Tail%27s+Tail&function=&find=Search
  20. http://herc.ws/board/topic/10408-ro-installer-script-inno-setup/
  21. it would be fine if you did update everything correctly.
  22. doesn't exist in your item_db or mob_db.
  23. remove //Drops setbattleflag("item_rate_common",$@drate); setbattleflag("item_rate_heal",$@drate); setbattleflag("item_rate_use",$@drate); setbattleflag("item_rate_equip",$@drate);
×
×
  • Create New...