Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. - script Guarda -1,{ OnPCLoadMapEvent: if (!agitcheck() && !agitcheck2() && !agitcheck3()) { .@gid = GetCastleData("prtg_cas01",1); if (getcharid(2) == .@gid) { dispbottom "[Sala do Clã]: Seja bem vindo a Sala do Clã"; } else { dispbottom "[Sala do Clã]: Apenas os Guerreiros que conquistaram o Castelo de Kriemhild podem estar neste lugar!"; warp "kalindor",146,169; } } end; } gp mapflag loadevent
  2. function Go { if ((getmapflag(getarg(0), mf_gvg_castle) || getmapflag(getarg(0), mf_gvg_dungeon)) && (getcharid(2) == 0 || getcharid(2) != getcastledata(getarg(0), 1)) ) { mes "^0000FFAgente Warp^000000"; cutin "jpn_mid03",2; mes "You are not an owner of any this Casttle, or member of any guild who owns one."; next; mes "^0000FFAgente Warp^000000"; mes "Conquest the castle, or join a guild who owns one in order to access!"; close3; } else { set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); warp getarg(0),getarg(1,0),getarg(2,0); } end; }
  3. getd( "Quest"+strnpcinfo(2) find all of it, and change to getd( "#Quest"+strnpcinfo(2) Work just fine using the default script in my test server. https://i.imgur.com/NKVDfuZ.png
  4. Emistry

    Npc fixed

    https://github.com/rathena/rathena/blob/master/doc/mob_db_mode_list.txt#L36 add the immune knockback mode to your monster.
  5. find the skill info lua file and fix the attack range data of these skills
  6. another simpler approach that you can try. function Go { set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); warp getarg(0),getarg(1,0),getarg(2,0); end; } change into function Go { if (getmapflag(getarg(0), mf_gvg_castle) && (getcharid(2) == 0 || getcharid(2) != getcastledata(getarg(0), 1))) { mes "^0000FFAgente Warp^000000"; cutin "jpn_mid03",2; mes "You are not an owner of any this Casttle, or member of any guild who owns one."; next; mes "^0000FFAgente Warp^000000"; mes "Conquest the castle, or join a guild who owns one in order to access!"; close3; } else { set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); warp getarg(0),getarg(1,0),getarg(2,0); } end; }
  7. use the quest system instead, it covered both monster kill and time limit.
  8. it take time to reload these database files, so its normal it stuck for few seconds.
  9. try here data\luafiles514\lua files\quest
  10. if not mistaken, you can try edit the file here data\luafiles514\lua files\skillinfoz\skilltreeview.lub JobSkillTab.ChangeSkillTabName(JOBID.JT_NOVICE, "1st", "2nd", "3rd")
  11. you dont have the valid mob_db entries for these mob. check your mob_db
  12. if (isequipped(4001)) { ... } as long as you equipped the item, it would work.
  13. are you perhaps configured your server with some ridiculously high EXP rate, which end up overflowed?
  14. you can just replace their sprite files, or get some changelook script, or the alternate outfit probably.
  15. View File Aurora Age - Skin Packs Introduction: A skin packs that I found in TWRO forum, made by a user named crystalchan. This skin package consists of ~10 recoloured skin, and 1 YoRha (Nier Automata) theme skin. Unfortunately, the skin pack are all translated in chinese language, most likely are usable only to those who can read chinese. Preview: Full Preview: https://imgur.com/a/I8w9FPO How to use: Extract the folder and put them in the /Skin/ folder or add it into the GRF Disclaimer: You're free to share with everyone but do not monetize the contents in any way! These materials are meant for study or research purpose. Use these at your own risk, and always give credit to original author. Thank you. Submitter Emistry Submitted 05/20/2020 Category Skins Video Content Author crystalchan  
  16. Version 20200123

    1284 downloads

    Introduction: A skin packs that I found in TWRO forum, made by a user named crystalchan. This skin package consists of ~10 recoloured skin, and 1 YoRha (Nier Automata) theme skin. Unfortunately, the skin pack are all translated in chinese language, most likely are usable only to those who can read chinese. Preview: Full Preview: https://imgur.com/a/I8w9FPO How to use: Extract the folder and put them in the /Skin/ folder or add it into the GRF Disclaimer: You're free to share with everyone but do not monetize the contents in any way! These materials are meant for study or research purpose. Use these at your own risk, and always give credit to original author. Thank you.
    Free
  17. the reason your script doesn't announce because your map doesn't have the load event mapflag that trigger the OnPCLoadMapEvent ... https://pastebin.com/edit/BiYsXSjG
  18. IP Address, UserName, Password ... Client Hash if enabled ... Some example of third party tool ... Gepard/Harmony and other game guard normally can get MAC Address or unique id. There used to be a gameguard that previously, manage to control the screenshot feature on player PC and upload it to server. etc. If you have the knowledge to build custom client hook (.dll) you can basically get whatever you want .... even your credit card info...
  19. if (isnight()) { // night codes } else { // day codes } if you have enabled the day/night rotation..
  20. create your own sprite files ... and find it in the grf file and replace it with your own file.
  21. its hex number ..... 0x01 + 0x02 + 0x04 + 0x08 + 0x10 = 0x1F
  22. emulator doesnt support it or somewhere doesnt packets doent support it etc...
  23. check your file path, the program said it doesn't exists.
  24. https://rathena.org/board/topic/111330-compiling-in-visual-studio-2017/ https://rathena.org/board/topic/111269-guide-lightweight-compiler-for-windows-for-replacement-heavy-visual-studio-ide-compile-rathena-faster-save-your-bandwidth-and-disk-space/
  25. npc/other/card_trader.txt
×
×
  • Create New...