PewN Posted September 29, 2012 Posted September 29, 2012 i made a custom halter lead i just copy it The Original 12622,Reins_Of_Mount,Reins Of Mount,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ setmounting(); },{},{} i make for Ninja/ SL 12623,Ancient_Frog_Summoner,Ancient Frog Summoner,11,0,,10,,,,,0x02100000,7,2,,,,,,{ setmounting(); },{},{} the mount is okay but when im on the mount i tried to click again but the mount doesn't release how to fix it? Quote
Bin4ry Posted September 29, 2012 Posted September 29, 2012 (edited) I guess is in pc.c /* Items with delayed consume are not meant to work while in mounts except reins of mount(12622) */ if( sd->inventory_data[n]->flag.delay_consume ) { if( nameid != 12622 && sd->sc.option&OPTION_MOUNTING ) return 0; else if( pc_issit(sd) ) return 0; } Add your item ID with pipe line in to nameid Edited September 29, 2012 by darristan Quote
PewN Posted September 29, 2012 Author Posted September 29, 2012 (edited) I guess is in pc.c /* Items with delayed consume are not meant to work while in mounts except reins of mount(12622) */ if( sd->inventory_data[n]->flag.delay_consume ) { if( nameid != 12622 && sd->sc.option&OPTION_MOUNTING ) return 0; else if( pc_issit(sd) ) return 0; } Add your item ID with pipe line in to nameid so it will look like this? if( nameid != 12622 || nameid != 12623 && sc->sc.option&OPTION_MOUNTING ) or if ( nameid != 12622,12623 && sc->sc.option&OPTION_MOUNTING ) Edited September 29, 2012 by bVersatile Quote
Question
PewN
i made a custom halter lead i just copy it
The Original
i make for Ninja/ SL
the mount is okay but when im on the mount i tried to click again but the mount doesn't release
how to fix it?
2 answers to this question
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.