AinsLord Posted June 29, 2016 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 June 29, 2016 is this working fine?? Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted June 29, 2016 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted June 29, 2016 (edited) I noticed this...Well it seem working fine until i restarted the server server 2x and this is the result But after 2x server restart the currency returned into its normal vending currency which is Zeny also the Extended Vend message that the sale is carried out is gone. Finally i think i found a solution to my problem . I did was...Changing this sd->vend_loot = nameid; sd->state.prevend = 1; to this sd->state.prevend = 1; sd->vend_loot = nameid; also disabling this // Extended Vending system [Lilith] if(!battle_config.extended_vending) at->vend_loot = 0; and adding this // initialize player CREATE(at->sd, struct map_session_data, 1); pc_setnewpc(at->sd, at->account_id, at->char_id, 0, gettick(), at->sex, 0); at->sd->state.autotrade = 1|2; + at->sd->vend_loot = at->vend_loot; // Extended Vending system [Lilith] at->sd->state.monster_ignore = (battle_config.autotrade_monsterignore); chrif_authreq(at->sd, true); uidb_put(vending_autotrader_db, at->char_id, at); then recompile. I also did some test if the shop currency will vanished and return to 0 but after 5 restarts the currency didnt vanished or return into 0.[Note]: I think the issue was on // Extended Vending system [Lilith] if(!battle_config.extended_vending) at->vend_loot = 0; because the vend currency keeps returning to 0 if you dont disable it and add this // initialize player CREATE(at->sd, struct map_session_data, 1); pc_setnewpc(at->sd, at->account_id, at->char_id, 0, gettick(), at->sex, 0); at->sd->state.autotrade = 1|2; + at->sd->vend_loot = at->vend_loot; // Extended Vending system [Lilith] at->sd->state.monster_ignore = (battle_config.autotrade_monsterignore); chrif_authreq(at->sd, true); uidb_put(vending_autotrader_db, at->char_id, at); but its my wild guess . Edited June 29, 2016 by Lelouch vi Britannia 1 Quote Link to comment Share on other sites More sharing options...
AinsLord Posted July 1, 2016 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 July 1, 2016 does this work on SVN r218? Quote Link to comment Share on other sites More sharing options...
Stolao Posted July 1, 2016 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted July 1, 2016 Why are you using r218 just use latest from github Quote Link to comment Share on other sites More sharing options...
AinsLord Posted July 5, 2016 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 July 5, 2016 Why are you using r218 just use latest from github link for the latest in github thnx in advance Quote Link to comment Share on other sites More sharing options...
Stolao Posted July 6, 2016 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted July 6, 2016 here 1 Quote Link to comment Share on other sites More sharing options...
alternate Posted July 6, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 20 Reputation: 2 Joined: 06/26/16 Last Seen: April 22, 2024 Share Posted July 6, 2016 (edited) Guys, im using latest rev and i got no errors compiling the changes but when i run my servers it show this msg: : DB error - Unkown column 'extended_vending_item' in 'field list'[Debug] at ..\src\vending.c:654 - SELECT 'id', 'account_id', 'char_id', 'sex', 'title', 'body_direction', 'head_direction', 'sit', 'extended_vending_item'FROM 'vendings' WHERE 'autotrade' =1 AND (SELECT COUNT('vending_id') FROM 'vending_items' WHERE 'vending_id' = 'id') > 0 ORDER BY 'id' ; any lights on this issue? @editAlso i tried to open a shop and i my hexed stopped working when i was about to open it. Edited July 6, 2016 by alternate Quote Link to comment Share on other sites More sharing options...
Yonko Posted July 6, 2016 Group: Members Topic Count: 166 Topics Per Day: 0.04 Content Count: 789 Reputation: 50 Joined: 04/16/12 Last Seen: July 8, 2022 Share Posted July 6, 2016 Guys, im using latest rev and i got no errors compiling the changes but when i run my servers it show this msg: : DB error - Unkown column 'extended_vending_item' in 'field list'[Debug] at ..\src\vending.c:654 - SELECT 'id', 'account_id', 'char_id', 'sex', 'title', 'body_direction', 'head_direction', 'sit', 'extended_vending_item'FROM 'vendings' WHERE 'autotrade' =1 AND (SELECT COUNT('vending_id') FROM 'vending_items' WHERE 'vending_id' = 'id') > 0 ORDER BY 'id' ; any lights on this issue? @editAlso i tried to open a shop and i my hexed stopped working when i was about to open it.did you add the sql file on your database? Quote Link to comment Share on other sites More sharing options...
alternate Posted July 6, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 20 Reputation: 2 Joined: 06/26/16 Last Seen: April 22, 2024 Share Posted July 6, 2016 Guys, im using latest rev and i got no errors compiling the changes but when i run my servers it show this msg: : DB error - Unkown column 'extended_vending_item' in 'field list'[Debug] at ..\src\vending.c:654 - SELECT 'id', 'account_id', 'char_id', 'sex', 'title', 'body_direction', 'head_direction', 'sit', 'extended_vending_item'FROM 'vendings' WHERE 'autotrade' =1 AND (SELECT COUNT('vending_id') FROM 'vending_items' WHERE 'vending_id' = 'id') > 0 ORDER BY 'id' ; any lights on this issue? @editAlso i tried to open a shop and i my hexed stopped working when i was about to open it.did you add the sql file on your database? @YonkoOps, forgot to do that! already done and the message from map server is gone BUTwhen i try do create any shop my hexed quits and stop workingwith no error within the servers Quote Link to comment Share on other sites More sharing options...
Expectra Posted July 11, 2016 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 08/21/12 Last Seen: December 18, 2022 Share Posted July 11, 2016 (edited) Help got this error on my rathena... Skill.c: In fuction 'skill_castend_nodamage_id': Skill.c:7310: warning: implict declaración of fuction 'clif_vend' I am using the extend vending 1.9.4 r15149 Edited July 11, 2016 by Expectra Quote Link to comment Share on other sites More sharing options...
Ares Posted July 15, 2016 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 5 Reputation: 1 Joined: 06/24/16 Last Seen: August 27, 2016 Share Posted July 15, 2016 Is there a stable release on this? xD Quote Link to comment Share on other sites More sharing options...
wOni Posted August 12, 2016 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 69 Reputation: 2 Joined: 04/20/13 Last Seen: October 6, 2018 Share Posted August 12, 2016 i did try this, no error will compiling but suddenly when i try it vend and click the zeny or coin or any i get this [Error]: Server received crash signal! Attempting to save all online characters! Help! Napster , are you still active? Im test this with current GIT, open vending choose TCG Card ID:7227 and... Packet Ver: '45', IP: '127.0.0.0', Group '99'). [Error]: Server received crash signal! Attempting to save all online characters! Any solution about here?, idid manually patch ExtendedVendingSystem_1.9.4_r15149.diff same problem Quote Link to comment Share on other sites More sharing options...
Technoken Posted November 23, 2016 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 505 Reputation: 127 Joined: 04/04/16 Last Seen: Yesterday at 03:31 AM Share Posted November 23, 2016 Any solution with this? After I updated to Git Hash: 9b1b7b1 , i'm having these compile error and warnings. 1>..\src\map\skill.c(7433): error C2065: 'TABLE_CART_' : undeclared identifier 1>..\src\map\skill.c(7433): warning C4047: 'function' : 's_storage *' differs in levels of indirection from 'int' 1>..\src\map\skill.c(7433): warning C4024: 'intif_storage_save' : different types for formal and actual parameter 2 I think it's because of the updates on Git Hash: ade1b17 Any help? thank you! Quote Link to comment Share on other sites More sharing options...
DevLong Posted January 4, 2017 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 05/01/16 Last Seen: April 21, 2021 Share Posted January 4, 2017 I tried to apply the system in my emulator and I came across this error when compiling http://ap.imagensbrasil.org/image/E4H2tH 1>..\src\map\itemdb.c(1686): error C2065: 'itemdb_read_vending' : undeclared identifier 1>..\src\map\itemdb.c(1686): warning C4047: 'function' : 'bool (__cdecl *)(char **,int,int)' differs in levels of indirection from 'int *' 1>..\src\map\itemdb.c(1686): warning C4024: 'sv_readdb' : different types for formal and actual parameter 7 1>..\src\map\vending.c(186): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(187): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(267): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(270): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(313): error C2039: 'cart' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(313): error C2198: 'itemdb_search' : too few arguments for call ========== Build: 0 succeeded, 1 failed, 3 up-to-date, 0 skipped ========== I tried several ways to correct the error but I did not find a solution Quote Link to comment Share on other sites More sharing options...
Chaos92 Posted January 6, 2017 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1821 Reputation: 288 Joined: 08/03/12 Last Seen: 20 minutes ago Share Posted January 6, 2017 On 1/5/2017 at 4:34 AM, DevLong said: I tried to apply the system in my emulator and I came across this error when compiling http://ap.imagensbrasil.org/image/E4H2tH 1>..\src\map\itemdb.c(1686): error C2065: 'itemdb_read_vending' : undeclared identifier 1>..\src\map\itemdb.c(1686): warning C4047: 'function' : 'bool (__cdecl *)(char **,int,int)' differs in levels of indirection from 'int *' 1>..\src\map\itemdb.c(1686): warning C4024: 'sv_readdb' : different types for formal and actual parameter 7 1>..\src\map\vending.c(186): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(187): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(267): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(270): error C2039: 'inventory' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(313): error C2039: 'cart' : is not a member of 'mmo_charstatus' 1> c:\users\iraaid\documents\teste novo server\rathena-master\rathena-master\src\map\../common/mmo.h(426) : see declaration of 'mmo_charstatus' 1>..\src\map\vending.c(313): error C2198: 'itemdb_search' : too few arguments for call ========== Build: 0 succeeded, 1 failed, 3 up-to-date, 0 skipped ========== I tried several ways to correct the error but I did not find a solution yup occur to me too Quote Link to comment Share on other sites More sharing options...
AinsLord Posted January 11, 2017 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 11, 2017 will this be working for the r25773??? Quote Link to comment Share on other sites More sharing options...
GameLord14 Posted January 16, 2017 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 01/01/17 Last Seen: December 18, 2024 Share Posted January 16, 2017 Any update? Quote Link to comment Share on other sites More sharing options...
AinsLord Posted March 9, 2017 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 March 9, 2017 any update for this im using the latest rev on github Quote Link to comment Share on other sites More sharing options...
iamkevin Posted March 20, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 104 Reputation: 3 Joined: 09/15/16 Last Seen: July 20, 2024 Share Posted March 20, 2017 Having problem Quote Link to comment Share on other sites More sharing options...
AinsLord Posted March 27, 2017 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 March 27, 2017 any update on this?? will this work now on latest rev from github?? Quote Link to comment Share on other sites More sharing options...
AinsLord Posted April 10, 2017 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 April 10, 2017 any update on this one?? Quote Link to comment Share on other sites More sharing options...
Akkarin Posted April 10, 2017 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Monday at 02:17 PM Share Posted April 10, 2017 I don't know why you keep asking if there's "any updates" for this release - the older a release becomes, the less likely it will work with the current revisions of rAthena. Quote Link to comment Share on other sites More sharing options...
simplexjay2 Posted May 24, 2017 Group: Members Topic Count: 56 Topics Per Day: 0.01 Content Count: 224 Reputation: 4 Joined: 02/09/12 Last Seen: April 20, 2024 Share Posted May 24, 2017 up On 3/28/2017 at 3:16 PM, bbestkanatip said: I have this problem how can i solve it same Error Latest Git Quote Link to comment Share on other sites More sharing options...
simplexjay2 Posted May 27, 2017 Group: Members Topic Count: 56 Topics Per Day: 0.01 Content Count: 224 Reputation: 4 Joined: 02/09/12 Last Seen: April 20, 2024 Share Posted May 27, 2017 Can Someone Update this Quote Link to comment Share on other sites More sharing options...
Akkarin Posted June 22, 2017 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Monday at 02:17 PM Share Posted June 22, 2017 On 2017-6-21 at 10:41 AM, almer said: is this working on 17704 SVN?>> We don't use svn. 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.