Jump to content

Mhalicot

Community Contributors
  • Content Count

    1971
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Mhalicot

  1. try this Quest Generator and I generate a sample script / / =============================================/ / == Cronus Tools :: Generator's Quest =======/ / == Version: ==================================/ / == 1.0/ / == Author: ===================================/ / == RoM/ / =============================================prontera, 153,160,4 script Quester 4_M_KHKYEL, { mes "[Quester]"; mes "Hello" + strcharinfo (0) + ""; mes "I have some interesting items here, want to take a look?"; next; if (select ("Sure: Maybe later ...") == 2) { mes "[Quester]"; mes "Alright, I'll be here if you change your mind."; close; } mes "[Quester]"; mes "Well, these are the items that I have ..."; mes "About which of them will want to know more?"; next; switch (select ("Weapon: None")) { case 1: mes "[Weapon]"; mes "reward"; mes "1x" + getitemname (1201); mes ""; mes "Required item"; mes "1x" + getitemname (512); mes "1x" + getitemname (582); mes "1x" + getitemname (514); next; mes "[Quester]"; mes "Would you do this quest?"; next; if (select ("Yes: Not now ...") == 2) { mes "[Quester]"; mes "Okay ... So long!"; close; } if (countitem (512)> = 1 && countitem (582)> = 1 && countitem (514)> = 1) { delitem 512.1; delitem 582.1; delitem 514.1; getitem 1201,1; mes "[Quester]"; mes "Here's Congratulations!"; close; } break; case 2: mes "[Quester]"; mes "Alright, I'll be here if you change your mind."; close; } mes "[Quester]"; mes "I'm sorry, but you do not have all items needed for this quest."; mes "Come back when you have all the items"; close;}
  2. ^ as of now the only way is manual, and you must have patient.
  3. No, While you are the top 1, this will never go off.. you can delete title by using @delpktile try it your self
  4. what client you used? if you are using 2013 client, download latest iteminfo.lua in Client Translation Project
  5. ahh, try to use PK title as preference.
  6. no. simply add that like this OnPCLoginEvent: if ( !#dragonslayer ) end; if ( #dragonslayer > gettimetick(2) ) atcommand "@fakename [Dragon Slayer] "+ strcharinfo(0); else atcommand "@fakename";OnTimer60000: // check every 1 min stopnpctimer; if ( #dragonslayer > gettimetick(2) ) atcommand "@fakename [Dragon Slayer] "+ strcharinfo(0); else atcommand "@fakename"; initnpctimer; end;
  7. Wrong Yes it is possibe by using mapflag zone example: add WZ_STORMGUST in { name: "Towns" disabled_skills: { AM_CANNIBALIZE: "PLAYER" AM_SPHEREMINE: "PLAYER" CR_CULTIVATION: "PLAYER" BS_GREED: "PLAYER" SC_MANHOLE: "PLAYER" WM_POEMOFNETHERWORLD: "PLAYER" GN_WALLOFTHORN: "PLAYER" WZ_STORMGUST: "PLAYER" //<-- Storm Gust } disabled_items: { Greed_Scroll: true }} then add in npc/mapflag prontera mapflag zone Towns since prontera is already in npc/mapflag. You don't have to add it anymore.
  8. use OnTimer<ms>: add this to your script OnTimer60000: stopnpctimer; if ( #dragonslayer > gettimetick(2) ) atcommand "@fakename [Dragon Slayer] "+ strcharinfo(0); else atcommand "@fakename"; initnpctimer; end;
  9. use mapflag noskill example: for more mapflag info visit here.
  10. Is your problem solved?
  11. ^I dont think so, because you receive the error in yourData.grf lua files can you post here your Quest_function.lua? inside yourData.grf
  12. ^scan your added custom items. Search for missing ',' do not put ',' at the end.
  13. because your SC is not updated replace all with this SC_PROPERTYFIRESC_PROPERTYWATERSC_PROPERTYWINDSC_PROPERTYGROUNDSC_PROPERTYUNDEADSC_PROPERTYDARKSC_PROPERTYTELEKINESIS source: Status List
  14. ^ what are you trying to do? I taught you diff your client Load lua before lub? try to use mine System.7z
  15. ^sorry my mistake, yes its Load iteminfo.lua befor lub I think its up to date
  16. please diff your client read lua before lub.
  17. Please share your solution to others
  18. ^change that version 26 to version 30 as the error says
  19. edit your clientinfo.xml inside YourData.grf <version>26</version> <-- make it 30
  20. Merry Christmas & Happy New Year

  21. lua is a de-compiled version of lub. lua is more readable than lub.
  22. if the lub files is already in English form or you can read it. you can easily rename it to .lua if not then use this LuaDec
  23. Note this : last update by the author is June 1 2013. Client translation Project is now on Rev. #73 so I guess its obvious
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.