Dia Posted January 18, 2012 Posted January 18, 2012 (edited) I made some changes but I am currently too lazy to seperate them. This includes New status ids New cart support Favorite item tab in inventory Status icon for sitting http://www.aegisdev....a/20120213.diff You also need to add a new column to inventory, cart and storage table. ALTER TABLE `inventory` ADD COLUMN `favorite` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `expire_time`; ALTER TABLE `cart_inventory` ADD COLUMN `favorite` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `expire_time`; ALTER TABLE `storage` ADD COLUMN `favorite` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `expire_time`; For Cart Support you need 2012-02-07bRagexeRE client. For Sitting Icon you need 2011-02-23bRagexeRE client. For Favorite Tab you need 2011-11-22aRagexeRE client. Edited February 13, 2012 by scriptor 5 Quote
Aleos Posted January 19, 2012 Posted January 19, 2012 Just for confirmation, this requires 2011-02-23bRagexeRE or newer (As per this topic). Quote
REKT Posted January 28, 2012 Posted January 28, 2012 Well i guess, the 'STATUS ICON' for sitting has a 'BUG' when hitting the character while 'SITTING' the Icon is still in there. supposed to be, it would be gone. How to fix this one? anyone could help me? Preview: Regards, Melody :3 Quote
Gepard Posted January 28, 2012 Posted January 28, 2012 Move clif_status_load_notick(...SC_SIT...) to pc_setsit/pc_setstand, so it's invoked every time PC is forced to stand/sit, not only if requested by player. Quote
Dia Posted February 13, 2012 Author Posted February 13, 2012 Updated it and added some other stuff. Check first post. Quote
Mystery Posted February 13, 2012 Posted February 13, 2012 You've added the new 2012 client packet (hence the change in max cart). Too bad the 2012 clients aren't officially released. Quote
Dia Posted February 13, 2012 Author Posted February 13, 2012 (edited) #define pc_setsit(sd) ( (sd)->state.dead_sit = (sd)->vd.dead_sit = 2 ) to #define pc_setsit(sd) ( (sd)->state.dead_sit = (sd)->vd.dead_sit = 2, clif_status_load_notick(&sd->bl,SI_SIT,2,1,0,0) ) and void pc_setstand(struct map_session_data *sd){ nullpo_retv(sd); status_change_end(&sd->bl, SC_TENSIONRELAX, INVALID_TIMER); clif_status_load_notick(&sd->bl,SI_SIT,0,0,0,0); //Reset sitting tick. sd->ssregen.tick.hp = sd->ssregen.tick.sp = 0; sd->state.dead_sit = sd->vd.dead_sit = 0; } Edited February 13, 2012 by scriptor Quote
Dia Posted February 14, 2012 Author Posted February 14, 2012 Currently working on battleground queue system. But not sure about the instancing of the bgs. Quote
brianj070707 Posted February 17, 2012 Posted February 17, 2012 (edited) so i just wanna ask if i apply all this patch. and my client is just 2011 - 03 - 05. Will it work. I mean for the meantime i just wanna use the sit icon. And the rest feature will be on my client update. Edited February 17, 2012 by brianj070707 Quote
Judas Posted February 17, 2012 Posted February 17, 2012 it would probably work, the sit icon for sure. Quote
sizenine Posted February 20, 2012 Posted February 20, 2012 (edited) after applying this patch (to the latest rA svn), i got this issue where if there exists items on the floor within my screen, my cursor will change into the hand (pick up) icon even if my cursor is nowhere near the item(s). hence, when i click any area on the screen at all while items are on the floor, it will go pick something up. is anyone experiencing this also? or did i mess up while diffing? i dont have any other mods and my carts/favorite tab/efst_sit all work fine. p.s. im using 2012-02-07bRagexeRE Edited February 20, 2012 by sizenine Quote
simplemhan Posted February 20, 2012 Posted February 20, 2012 all 2012 and some 2011 client experience it also. Quote
sizenine Posted February 20, 2012 Posted February 20, 2012 all 2012 and some 2011 client experience it also. u mean after applying this diff right? Quote
Mystery Posted February 21, 2012 Posted February 21, 2012 all 2012 and some 2011 client experience it also. How do you have hands on a 2012 client already? Quote
Dia Posted February 22, 2012 Author Posted February 22, 2012 Hm, I am not sure. I had this problem as well. But it was gone somehow. Quote
sizenine Posted February 22, 2012 Posted February 22, 2012 can you please try to recall what you mightve done to fix it? Quote
Lordiemax Posted February 22, 2012 Posted February 22, 2012 2012-02-07bRagexeRE uses luafiles514 right? (maybe i'm wrong) Quote
simplemhan Posted February 22, 2012 Posted February 22, 2012 Yeah it use luas514 if im using ragexere.exe what lub should i use on it. the lub from data.grf or rdata.grf? Quote
sizenine Posted February 24, 2012 Posted February 24, 2012 i noticed that your cart will disappear from other users' screen if they refresh/respawn. but if you use change cart skill, then it will show again. Quote
Lordamax Posted February 29, 2012 Posted February 29, 2012 (edited) Is this compatible with 3CeAM?? Edited March 4, 2012 by Lordamax Quote
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.