Mister Noob Posted August 24, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 12/11/19 Last Seen: March 27 Share Posted August 24, 2023 On 8/23/2023 at 8:49 PM, Forshaken said: can you please elaborate your problem? I have attached screenshots. When clicking on cancel button (encircled in red) while in the currency tab, the vending will push through instead of getting canceled, resulting to Unknown Item as currency. Quote Link to comment Share on other sites More sharing options...
Chaoszinho Posted August 24, 2023 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 17 Reputation: 1 Joined: 11/29/16 Last Seen: Yesterday at 01:01 AM Share Posted August 24, 2023 11 minutes ago, micosanityyy said: I have attached screenshots. When clicking on cancel button (encircled in red) while in the currency tab, the vending will push through instead of getting canceled, resulting to Unknown Item as currency. Use this diff Extend Vending 1.7.0 (1).diff Quote Link to comment Share on other sites More sharing options...
Forshaken Posted August 24, 2023 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 152 Reputation: 21 Joined: 11/12/18 Last Seen: February 8 Share Posted August 24, 2023 6 hours ago, Chaoszinho said: Use this diff Extend Vending 1.7.0 (1).diff 38.5 kB · 0 downloads I iuse the same mod on latest rev and after i click that cencel button, vend will not push thru and it has a message mo "Skill faiked.. Quote Link to comment Share on other sites More sharing options...
JinYuichi Posted August 25, 2023 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 110 Reputation: 30 Joined: 11/24/14 Last Seen: Monday at 05:03 PM Share Posted August 25, 2023 5 hours ago, Forshaken said: Utilizo el mismo mod en la última revolución y después de hacer clic en ese botón de cencel, vend no presionará y tiene un mensaje mo "Skill faiked.. it's obvious that the ability will fail if you give it cancel ._. Quote Link to comment Share on other sites More sharing options...
AinsLord Posted August 25, 2023 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: March 23 Share Posted August 25, 2023 On 7/6/2023 at 8:06 PM, rongrong said: Thx! i have fixed it. int skill_vending(struct map_session_data *sd, t_itemid nameid) { std::shared_ptr<item_data> item; char output[1024]; nullpo_ret(sd); if (!pc_can_give_items(sd) || (item = item_db.find(nameid)) == NULL) { // it return -1 here but shows 4294967295 if (!pc_can_give_items(sd) || !nameid || !item_db.exists(nameid)) { // i fixed like this and it works well now @Forshaken try this method 1.7.0 diff should fix ur problem try to get fresh src files then manually add those lines in diff file Quote Link to comment Share on other sites More sharing options...
Forshaken Posted August 27, 2023 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 152 Reputation: 21 Joined: 11/12/18 Last Seen: February 8 Share Posted August 27, 2023 On 8/25/2023 at 6:03 AM, JinYuichi said: it's obvious that the ability will fail if you give it cancel ._. yeah that is my point mine is working well. Quote Link to comment Share on other sites More sharing options...
Forshaken Posted August 27, 2023 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 152 Reputation: 21 Joined: 11/12/18 Last Seen: February 8 Share Posted August 27, 2023 On 8/25/2023 at 12:19 PM, AinsLord said: @Forshaken try this method 1.7.0 diff should fix ur problem try to get fresh src files then manually add those lines in diff file no problem with that mod thx @AinsLord for responding Quote Link to comment Share on other sites More sharing options...
Pavianne Posted September 9, 2023 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 8 Reputation: 5 Joined: 06/26/22 Last Seen: March 21 Share Posted September 9, 2023 updated rathena src map crash when buying items on vending. any fix? Quote Link to comment Share on other sites More sharing options...
Harvin Posted September 9, 2023 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 39 Reputation: 32 Joined: 06/08/23 Last Seen: June 29, 2024 Share Posted September 9, 2023 (edited) 6 hours ago, marky1114 said: updated rathena src map crash when buying items on vending. any fix? try this patch. I has updated the code in some line 0001-Extended-Vending.patch Edited September 9, 2023 by Harvin Quote Link to comment Share on other sites More sharing options...
Ph34r Posted September 19, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 08/16/17 Last Seen: December 24, 2024 Share Posted September 19, 2023 (edited) Everything is working fine, only issue is when we cancel vending after using skill, it continues to open shop and opens it with [Unknown item] currency which doesnt work. Any Resolution to this problem? - Fixed it using Extended Vending 1.7.0 (1) diff. Thanks! Edited September 19, 2023 by Ph34r Quote Link to comment Share on other sites More sharing options...
UncleBobby Posted October 26, 2023 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 09/29/19 Last Seen: March 19 Share Posted October 26, 2023 On 2/25/2019 at 6:38 PM, Kuroe said: 1 More problem. When I sell an item using mithril coin it sells the item even the player doesn't have mithril coins and the seller doesn't even get anything Edit: Got it working. I just had to re-do from the top. you did it fresh again to make it work? same issue as mine Quote Link to comment Share on other sites More sharing options...
normansalimi90 Posted February 17, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 02/11/24 Last Seen: January 24 Share Posted February 17, 2024 hello, is extended vending still working? Im using latest rathena and ExtendedVending_[Rev9] Can anyone help fix this error? Quote Link to comment Share on other sites More sharing options...
dantoki Posted February 18, 2024 Group: Members Topic Count: 67 Topics Per Day: 0.01 Content Count: 235 Reputation: 42 Joined: 10/21/12 Last Seen: Yesterday at 06:52 PM Share Posted February 18, 2024 On 7/6/2023 at 8:06 PM, rongrong said: Thx! i have fixed it. int skill_vending(struct map_session_data *sd, t_itemid nameid) { std::shared_ptr<item_data> item; char output[1024]; nullpo_ret(sd); if (!pc_can_give_items(sd) || (item = item_db.find(nameid)) == NULL) { // it return -1 here but shows 4294967295 if (!pc_can_give_items(sd) || !nameid || !item_db.exists(nameid)) { // i fixed like this and it works well now Is there an update code for this? I test this on latest rA it cancels the vending when u press cancel but when u try to ok the map disconnects. Quote Link to comment Share on other sites More sharing options...
Ruhn Posted April 18, 2024 Group: Members Topic Count: 21 Topics Per Day: 0.01 Content Count: 63 Reputation: 1 Joined: 04/15/20 Last Seen: Yesterday at 01:35 AM Share Posted April 18, 2024 I got this error after compiling. Any fix for this? Quote Link to comment Share on other sites More sharing options...
JinYuichi Posted April 19, 2024 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 110 Reputation: 30 Joined: 11/24/14 Last Seen: Monday at 05:03 PM Share Posted April 19, 2024 On 4/17/2024 at 6:50 PM, Ruhn said: Recibí este error después de compilar. ¿Alguna solución para esto? This diff works for the latest version of rathena | 19-04-2024 [ Extend Vending 3.0 ] Rev16.8 JinYuichi.diff 2 Quote Link to comment Share on other sites More sharing options...
hendra814 Posted June 23, 2024 Group: Members Topic Count: 59 Topics Per Day: 0.01 Content Count: 1278 Reputation: 170 Joined: 06/12/12 Last Seen: 5 hours ago Share Posted June 23, 2024 On 9/9/2023 at 10:50 PM, Harvin said: try this patch. I has updated the code in some line 0001-Extended-Vending.patch 30.79 kB · 91 downloads not working using lastest rathena On 4/19/2024 at 9:03 PM, JinYuichi said: This diff works for the latest version of rathena | 19-04-2024 [ Extend Vending 3.0 ] Rev16.8 JinYuichi.diff 38.66 kB · 41 downloads and this one too Quote Link to comment Share on other sites More sharing options...
JinYuichi Posted June 23, 2024 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 110 Reputation: 30 Joined: 11/24/14 Last Seen: Monday at 05:03 PM Share Posted June 23, 2024 1 hour ago, hendra814 said: not working using lastest rathena and this one too as the post says it works for the date I said, you will have to fix it by yourself for the current date Quote Link to comment Share on other sites More sharing options...
noblesse Posted July 8, 2024 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 17 Reputation: 0 Joined: 05/15/16 Last Seen: November 27, 2024 Share Posted July 8, 2024 anyone has the working version for latest rathena? Quote Link to comment Share on other sites More sharing options...
nobodyelse Posted September 11, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 7 Reputation: 0 Joined: 11/30/19 Last Seen: 10 hours ago Share Posted September 11, 2024 any update on this for latest rathena? Quote Link to comment Share on other sites More sharing options...
solid2005 Posted September 27, 2024 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 147 Reputation: 15 Joined: 01/06/12 Last Seen: Tuesday at 12:33 PM Share Posted September 27, 2024 (edited) I try my best to convert this one. I didn't test this yet. use at your own risk. Extend Vending 10072024.diff Edited October 6, 2024 by solid2005 Quote Link to comment Share on other sites More sharing options...
bellacalleb Posted October 11, 2024 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 15 Reputation: 0 Joined: 08/13/18 Last Seen: 1 hour ago Share Posted October 11, 2024 On 27/09/2024 at 13:43, solid2005 said: Eu tento o meu melhor para converter este. Eu não testei isso ainda. use por sua conta e risco. Estender Vending 10072024.diff 28,17 KB de dados · 6 downloads I can apply this diff but for some reason when I try to open the store my char stays still and cannot use anything else or move, requiring me to disconnect and connect to the char again neither an error nor a warning appears in mapserv Could the problem be in my patch? I don't think so since without applying diff the skill works normally Quote Link to comment Share on other sites More sharing options...
AinsLord Posted December 17, 2024 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: March 23 Share Posted December 17, 2024 (edited) warnings regarding clif.cpp conversion from 'size_t' to 'int16' when use the skill cant move but can do @go @warp commands Edited December 17, 2024 by AinsLord Quote Link to comment Share on other sites More sharing options...
SpOOn Posted December 28, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.01 Content Count: 10 Reputation: 0 Joined: 11/11/24 Last Seen: February 15 Share Posted December 28, 2024 On 10/11/2024 at 8:54 AM, bellacalleb said: I can apply this diff but for some reason when I try to open the store my char stays still and cannot use anything else or move, requiring me to disconnect and connect to the char again neither an error nor a warning appears in mapserv Could the problem be in my patch? I don't think so since without applying diff the skill works normally I'm having the same problem here. Could someone help us? Quote Link to comment Share on other sites More sharing options...
Dev KhayZia AZ Posted January 10 Group: Members Topic Count: 7 Topics Per Day: 0.05 Content Count: 12 Reputation: 0 Joined: 11/22/24 Last Seen: March 23 Share Posted January 10 @@ -7511,6 +7511,12 @@ void clif_openvendingreq(struct map_session_data* sd, int num) int fd; nullpo_retv(sd); + + // Vending shouldn't open if vend_loot is 0 and extended vending is enabled [Easycore] + if (battle_config.extended_vending && sd->vend_loot == 0) { + sd->state.prevend = 0; + return; + } -->> fd = sd->fd; ->> WFIFOHEAD(fd,packet_len(0x12d)); who have the latest extend vending Quote Link to comment Share on other sites More sharing options...
AinsLord Posted January 15 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: March 23 Share Posted January 15 On 1/10/2025 at 4:18 PM, Dev KhayZia AZ said: @@ -7511,6 +7511,12 @@ void clif_openvendingreq(struct map_session_data* sd, int num) int fd; nullpo_retv(sd); + + // Vending shouldn't open if vend_loot is 0 and extended vending is enabled [Easycore] + if (battle_config.extended_vending && sd->vend_loot == 0) { + sd->state.prevend = 0; + return; + } -->> fd = sd->fd; ->> WFIFOHEAD(fd,packet_len(0x12d)); who have the latest extend vending is this a fix or anything please tell Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.