-
Posts
457 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by johnbond
-
I want this too. I can also buy if there is one available. Thanks.
-
Hi! Does anyone have the complete working NPCs/scripts for this quest: http://irowiki.org/wiki/Theore%27s_Request I think this is already an old quest but I cannot find it in the latest revision. Is it really not yet out on the latest revision or maybe anyone has it? Or maybe you can script it for me? I will gladly pay for the service. Please keep me posted. Thank you for your time guys.
-
Hi guys! Does anybody know where to get the codes for the @whobuy command? One player of mine stated that this command is already present in other servers. Its almost similar to @shopsearch but instead of displaying who sells the item, it displays who buys them (players using buying store). Anyone has this? or maybe I can request on to be coded for me? I can pay for the service. Please let me know. Any help is greatly appreciated. Thank you!
-
Some of my players were requesting this new NPC. They linked me to the site of an official ragnarok server here: http://ragnarok.levelupgames.ph/main/enchantment-npc-guide-midheadgears/ . Its another NPC made specifically for mid gears enchantments which requires a "midgard coin" (#6242). This was out on the official server since last Sept 2012 so I was wondering if we already have the NPC for this by now? Does anyone have the script/s for this? Or may I request to make one for me? I can pay for the service. Let me know guys. Thank you in advance!
-
Either in my serverfiles123.grf or my data.grf does not have the file helpmsgstr.lua or helpmsgstr.lub. The path I searched was data\luafiles514\lua files\datainfo. But I also did an alt+f search on the whole data folder of both server.grf and data.grf (extracted) but there was nothing with a filename "helpmsgstr". Maybe its in some other place or some other file? Thank you for taking time to read.
-
Hello everyone! I would like to ask support on how to make the @duel command check first if there is an ongoing "dance skill" like Bragi, Whistle, etc. before @duel triggers. If there are ongoing dance skills (for bard/dancer class) then the @duel command will not go though and giving a dispbottom "Cannot duel while in Dance Skill.". Here is my @duel code from my atcommand.c : /*========================================== * Duel organizing functions [LuzZza] * * @duel [limit|nick] - create a duel * @invite <nick> - invite player * @accept - accept invitation * @reject - reject invitation * @leave - leave duel *------------------------------------------*/ ACMD_FUNC(invite) { unsigned int did = sd->duel_group; struct map_session_data *target_sd = map_nick2sd((char *)message); if(did <= 0) { // "Duel: @invite without @duel." clif_displaymessage(fd, msg_txt(350)); return 0; } if(duel_list[did].max_players_limit > 0 && duel_list[did].members_count >= duel_list[did].max_players_limit) { // "Duel: Limit of players is reached." clif_displaymessage(fd, msg_txt(351)); return 0; } if(target_sd == NULL) { // "Duel: Player not found." clif_displaymessage(fd, msg_txt(352)); return 0; } if(target_sd->duel_group > 0 || target_sd->duel_invite > 0) { // "Duel: Player already in duel." clif_displaymessage(fd, msg_txt(353)); return 0; } if(battle_config.duel_only_on_same_map && target_sd->bl.m != sd->bl.m) { sprintf(atcmd_output, msg_txt(364), message); clif_displaymessage(fd, atcmd_output); return 0; } duel_invite(did, sd, target_sd); // "Duel: Invitation has been sent." clif_displaymessage(fd, msg_txt(354)); return 0; } ACMD_FUNC(duel) { char output[CHAT_SIZE_MAX]; unsigned int maxpl=0, newduel; struct map_session_data *target_sd; if(sd->duel_group > 0) { duel_showinfo(sd->duel_group, sd); return 0; } if(sd->duel_invite > 0) { // "Duel: @duel without @reject." clif_displaymessage(fd, msg_txt(355)); return 0; } if(!duel_checktime(sd)) { // "Duel: You can take part in duel only one time per %d minutes." sprintf(output, msg_txt(356), battle_config.duel_time_interval); clif_displaymessage(fd, output); return 0; } if( message[0] ) { if(sscanf(message, "%d", &maxpl) >= 1) { if(maxpl < 2 || maxpl > 65535) { clif_displaymessage(fd, msg_txt(357)); // "Duel: Invalid value." return 0; } duel_create(sd, maxpl); } else { target_sd = map_nick2sd((char *)message); if(target_sd != NULL) { if((newduel = duel_create(sd, 2)) != -1) { if(target_sd->duel_group > 0 || target_sd->duel_invite > 0) { clif_displaymessage(fd, msg_txt(353)); // "Duel: Player already in duel." return 0; } duel_invite(newduel, sd, target_sd); clif_displaymessage(fd, msg_txt(354)); // "Duel: Invitation has been sent." } } else { // "Duel: Player not found." clif_displaymessage(fd, msg_txt(352)); return 0; } } } else duel_create(sd, 0); return 0; } ACMD_FUNC(leave) { if(sd->duel_group <= 0) { // "Duel: @leave without @duel." clif_displaymessage(fd, msg_txt(358)); return 0; } duel_leave(sd->duel_group, sd); clif_displaymessage(fd, msg_txt(359)); // "Duel: You left the duel." return 0; } ACMD_FUNC(accept) { char output[CHAT_SIZE_MAX]; if(!duel_checktime(sd)) { // "Duel: You can take part in duel only one time per %d minutes." sprintf(output, msg_txt(356), battle_config.duel_time_interval); clif_displaymessage(fd, output); return 0; } if(sd->duel_invite <= 0) { // "Duel: @accept without invititation." clif_displaymessage(fd, msg_txt(360)); return 0; } if( duel_list[sd->duel_invite].max_players_limit > 0 && duel_list[sd->duel_invite].members_count >= duel_list[sd->duel_invite].max_players_limit ) { // "Duel: Limit of players is reached." clif_displaymessage(fd, msg_txt(351)); return 0; } duel_accept(sd->duel_invite, sd); // "Duel: Invitation has been accepted." clif_displaymessage(fd, msg_txt(361)); return 0; } ACMD_FUNC(reject) { if(sd->duel_invite <= 0) { // "Duel: @reject without invititation." clif_displaymessage(fd, msg_txt(362)); return 0; } duel_reject(sd->duel_invite, sd); // "Duel: Invitation has been rejected." clif_displaymessage(fd, msg_txt(363)); return 0; } /*=================================== Any help will be greatly appreciated. Thank you guys! Anyone please? EDIT: Nevermind friends I already found it. Thank you. Mods kindly delete or close this topic. Thanks.
-
You can get it from here http://rathena.org/board/topic/64098-cart3-types-of-new-cart/ EDIT: Found another cart.http://rathena.org/board/files/file/2607-halloween-cart/ Thank you! But how can I implement this? I have patched it to my main grf but still these carts does not show on the "Change cart" skill menu. Can anyone kindly give me a tutorial on how to make this show as one of the options in the menu of the Change Cart skill of merchant class? Thank you guys in advance. http://rathena.org/board/topic/58825-how-to-add-custom-carts-client-and-server-side/#entry78044 Oh thank you I have read the page on the link. But the guide only tells how to replace the original designs to custom sprites. But what I want is to "add" these new carts I downloaded to the the existing 5 official/default cart designs making all the cart designs a total of 8. How can this be done? Thank you my friend.
-
Port Malaya complete NPC, warps, and quest
johnbond replied to Meister's question in Script Requests
Do you have something complete Meister? Thank you my friend. -
I cant find the "helpmsgstr.lua" file in my grf. Is there any other file to look for? Thanks.
-
Anyone know how? Thank you.
-
Port Malaya complete NPC, warps, and quest
johnbond replied to Meister's question in Script Requests
Hello Meister, do you already have these NPCs? Maybe if you would be so kind and kidly share it with me? I can pay for service. Thank you my friend. -
Hello anyone? I am always trying to contact http://rathena.org/board/user/1705-gennosuke-kouga/ but there i still no answer I think he is out for quite a while now. Does anybody have these NPCs for these maps that they would like to share? I can also pay for the service if needed. Kindly keep me posted guys. Thank you.
-
You can get it from here http://rathena.org/board/topic/64098-cart3-types-of-new-cart/ EDIT: Found another cart.http://rathena.org/board/files/file/2607-halloween-cart/ Thank you! But how can I implement this? I have patched it to my main grf but still these carts does not show on the "Change cart" skill menu. Can anyone kindly give me a tutorial on how to make this show as one of the options in the menu of the Change Cart skill of merchant class? Thank you guys in advance.
-
Hello everyone! Does anyone have these new official cart designs: Maybe someone can help me to have this in my server including all sprites and implementation on SRC. I can pay for service if needed. Please send me a pm. Thank you.
-
Hello! Does anyone have the complete compilation of NPCs of Mora and others? NPCs regarding these official normal NPCs and quests: Anyone has these complete? I can pay for the service if needed. Thank you guys!
-
I dont know if this is the right place for this query but how and where do I change the text when players type /h or / h2 in game? Thank you guys.
-
Anyone have these official scripts? Thank you in advance guys.
-
Thank you Emistry as always! I sent you a pm. Thanks!
-
Thanks!
-
Or anyone? Thanks!
-
How can I have these status icons: Currently when we use coldresist potion there is no icon showing at the right hand side of window. Though other status icons are fully working except for the ones highlighted above. Item_db side for your reference below: 12118,Resist_Fire,Fireproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT,1200000,-15,0,20,0; },{},{} 12119,Resist_Water,Coldproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT,1200000,20,0,0,-15; },{},{} 12120,Resist_Earth,Earthproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT,1200000,0,20,-15,0; },{},{} 12121,Resist_Wind,Thunderproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT,1200000,0,-15,0,20; },{},{} Thank you guys.
-
[Showcase] Prontera - Malaya Style
johnbond replied to K e o u g h's topic in Maps & 3D Modeling Showcase
I want this too. But how large is the file size to have this patched? -
[Showcase] Turbo Room - Malaya Style
johnbond replied to K e o u g h's topic in Maps & 3D Modeling Showcase
How large is the file size patched? -
Port Malaya complete NPC, warps, and quest
johnbond replied to Meister's question in Script Requests
No news? Sorry for reviving an old post but I need this too instead of opening a new one. Thanks. -
Actually I have already contacted him since 3 weeks ago but no reply. He is "Last Active Jan 20 2013 02:27 PM" Any other way to get this? Thanks.