GmOcean 92 Posted October 19, 2014 I just wanna suggest that the *explode script command, should push the array size of the one it creates. So that things like this are possible: .@a = 10;while( .@b != .@a ) { .@menu$ = .@menu$ +""+ .@b +":"; .@b++;}.@menu$ = .@menu$ +"Last Option";if( select( .@menu$ ) == ( .@size = explode( .@temp$, .@menu$, ":" ) ) ) { close; } // Clicked Last Option in list. vs what we have to do now: .@a = 10;while( .@b != .@a ) { .@menu$ = .@menu$ +""+ .@b +":"; .@b++;}.@menu$ = .@menu$ +"last Option";explode( .@temp$, .@menu$, ":" );if( select( .@menu$ ) == getarraysize( .@temp$ ) ){ close; } // Clicked Last Option in list. It's not really " needed " more of just a feature I think it should have since commands like query_sql have it. I figure why not give it the extra feature since it's not a downgrade nor does it break backwards compatibility. 3 jaBote, anacondaq and Zephyr reacted to this Quote Share this post Link to post Share on other sites
jaBote 438 Posted October 20, 2014 I do support this one. Quote Share this post Link to post Share on other sites
Emistry 145 Posted September 6, 2015 https://github.com/HerculesWS/Hercules/pull/700 Quote Share this post Link to post Share on other sites
AnnieRuru 957 Posted December 21, 2015 merge in https://github.com/HerculesWS/Hercules/commit/6a0093b170719092e6c0f11b889353cd70b38313 credit to emistry ... and Haru too https://github.com/HerculesWS/Hercules/commit/851e97a20701bf2800491690838f654a9a6638e6 Quote Share this post Link to post Share on other sites