Jump to content

Kichi

Members
  • Posts

    509
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Kichi

  1. @Winz if you do that, it will make all warning message gone
  2. @emistry thx for clearing his question @admaqua I don't know how to open the chain quest because it related client, or maybe you can send fake quest packet to open the next quest from server.
  3. My shows too ... after I talk to the npc ... But as I'm adding custom quests, I want to take this chain. back to topic sir you can remove the ???? by delete the quests line at data/luafiles514/lua files/quest/
  4. why i can then you can't? Tribal Chief quest unlocked right after i finished the Help Leader!
  5. thanks solved Solve type config.borf.json on console other question. i can't select a map at file->open also file-new map
  6. i think "???????" is part of chain quest, when you finish the first it will open the next "??????" and so on. name = [[EP 14.1 Quests]], imagefile = [[ep_test_sample.bmp]], list = { { name = [[Lope and Euridi]], list = { { name =[[Lope and Euridi - Survivors of the forest fog.]], scrfilename = [[epsoid141Quest]], questID = 1109, }, { name =[[Lope and Euridi - Victims of the fog.]], scrfilename = [[epsoid141Quest]], questID = 1110, }, { name =[[Lope and Euridi - The forest fog.]], scrfilename = [[epsoid141Quest]], questID = 1111, }, { name =[[Lope and Euridi - Labyrinth.]], scrfilename = [[epsoid141Quest]], questID = 1112, }, { name =[[Lope and Euridi - Promise torn.]], scrfilename = [[epsoid141Quest]], questID = 1113, }, { name =[[Lope and Euridi - The cost of sacrificing.]], scrfilename = [[epsoid141Quest]], questID = 1114, }, { name =[[Lope and Euridi - Song of the Abyss.]], scrfilename = [[epsoid141Quest]], questID = 1115, }, { name =[[Lope and Euridi - Song of the Dead.]], scrfilename = [[epsoid141Quest]], questID = 1116, }, { name =[[Lope and Euridi - Promise of eternity.]], scrfilename = [[epsoid141Quest]], questID = 1117, }, { name =[[Knights of the Neighborhood.]], scrfilename = [[epsoid141Quest]], questID = 1118, }, } }, delete the chain quest, maybe is what you looking for
  7. same problem { "resolution" : [ 1280, 720 ], "data" : { "ropath" : "E:/Ragnarok/kRO/RO", "grfs" : [ "E:/Ragnarok/kRO/RO/data.grf", "E:/Ragnarok/kRO/RO/rdata.grf" ] }, "moveconsole" : true, "defaultmap" : "prontera" }
  8. the client doesn't lunch if you have too complete kRO data or incomplete kRO data delete / backup all of your dll files then extract dll and the setup de el el.zip Setup.zip
  9. why i can then you can't? try this client HERE it allow you to create guild with space how to create guild? /guild "guild name" alt + g -> input name -> click ok replace with this: ACMD_FUNC(guild) { char guild[NAME_LENGTH]; int prev; nullpo_retr(-1, sd); memset(guild, '\0', sizeof(guild)); if (!message || !*message || sscanf(message, "%23[^\n]", guild) < 1) { clif_displaymessage(fd, msg_txt(sd,1030)); // Please enter a guild name (usage: @guild <guild_name>). return -1; } prev = battle_config.guild_emperium_check; battle_config.guild_emperium_check = 1; guild_create(sd, guild); battle_config.guild_emperium_check = prev; return 0; }
  10. item bonus script example: 2220,Hat,Hat,4,1000,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,16,{ bonus2 bSubEle,Ele_Neutral,100; },{},{}
  11. yes you can, delete your MySQL but just install XAMPP if you want a MySQL interface? just download MySQL query browser
  12. check your PM, i hope it solve your problem
  13. this is just an example you may remade or make up this script till you fullfill your imagination.
  14. Kichi

    Item_cash_db

    its rathena bug not your mistake
  15. i think it because those 3 guilds already has more than 20 member before you reduce the guild max member CMIIW try to edit your sql UPDATE `guild` SET max_member=20 WHERE max_member >21;
  16. example from char 150000 want to delete 19507 and it worn by that char (equip ) DELETE FROM `inventory` WHERE char_id='150000' AND nameid='19507' AND equip='1024; equip will return to value of headgear position, and it will be 0 if the equip is not worn to the char CMIWW
  17. Untested prontera,154,187,4 script spawn 999,{ getmapxy .@map$,.@x,.@y,1; if(!mobcount(.@map$,strnpcinfo(0)+"::OnMyMobDead")){ mes "Monster spawned."; monster .@map$,.@x,.@y,"Poring",1002,1,strnpcinfo(0)+"::OnMyMobDead"; pvpon; }else mes "The Monster still alive."; close; end; OnMyMobDead: pvpoff; }
  18. Try this Test RO.zip Read folder first Multiple grf ignore missing files & sprites and another recomend diffs
  19. who is stapo? if you got error, means you made mistake when add a sprite to your client, try to solve this there are 2 kind of sprite inside client this is for item icon sprite data\sprite\¾ÆÀÌÅÛ and this for item view (male & female) data\sprite\¾Ç¼¼»ç¸®\¿© data\sprite\¾Ç¼¼»ç¸®\³² if you can't solve this step you won't able to add a custom sprite
  20. @guild is atcommand so it will by pass the emperium use the client and patcher HERE his patcher able to allow you create a guild with/without space
  21. for the diff patcher HERE another exe HERE
  22. easy way skill ALL_INCCARRY,1,0; ref: *skill <skill id>,<level>{,<flag>}; *skill "<skill name>",<level>{,<flag>};
  23. if ((!mobcount(strnpcinfo(2),"Agit#"+strnpcinfo(2)+"::OnAgitBreak"))&&(strnpcinfo(4)=="prtg_cas01")) { monster strnpcinfo(2),.@emproom[0],.@emproom[1],"Emperium",4000,1,"Agit#"+strnpcinfo(2)+"::OnAgitBreak"; } else{ monster strnpcinfo(2),.@emproom[2],.@emproom[3],"Emperium",1288,1,"Agi#"+strnpcinfo(2)+"::OnAgitBreak"; } end; Castle prtg_cas01 will use emperium 4000 else 1288
  24. sorry i still can't reproduce i using newest rathena , 20130807
  25. sorry my mistake change to skill_blockpc_start(sd, skill_id, skill_get_time2(skill_id,skill_lv));
×
×
  • Create New...