PewN Posted September 29, 2012 Group: Members Topic Count: 209 Topics Per Day: 0.04 Content Count: 892 Reputation: 27 Joined: 12/09/11 Last Seen: April 16, 2016 Share 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 Link to comment Share on other sites More sharing options...
Bin4ry Posted September 29, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share 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 Link to comment Share on other sites More sharing options...
PewN Posted September 29, 2012 Group: Members Topic Count: 209 Topics Per Day: 0.04 Content Count: 892 Reputation: 27 Joined: 12/09/11 Last Seen: April 16, 2016 Author Share 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 Link to comment Share on other sites More sharing options...
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?
Link to comment
Share on other sites
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.