Chuckun Posted November 2, 2011 Share Posted November 2, 2011 Firstly, I absolutely LOVE the new recipient list feature of the PM UI in 0.4. Well done for that. I have a suggestion though - the title pretty much says it all.. Would it be possible to implement a way of selecting multiple people from the list? The only way I can suggest doing that would be to CTRL+Click on several people from the list.. If it's not possible to captcher ctrl like that, then perhaps have it so you must double click people from the list to add to the recipient field.. But if possible, the ctrl+click option is probably the least messy for you guys.. Chuckun Link to comment Share on other sites More sharing options...
Chuckun Posted December 4, 2011 Author Share Posted December 4, 2011 Any chance of this coming in? Or at least any supporters of the idea? I've always wanted such functionality to the PM system but currently no MOD offers it Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted December 4, 2011 Management Share Posted December 4, 2011 We will look into that, however we don't promise anything Link to comment Share on other sites More sharing options...
Chuckun Posted December 6, 2011 Author Share Posted December 6, 2011 No promise necessary If it's too much work for such a little thing then being a programmer I can perfectly understand it. Just thought I'd throw it out there since I have no idea what sort of work is involved due to never ever delving into the realms of ET other than playing Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted December 6, 2011 Management Share Posted December 6, 2011 I don't promise anything because we were trying to implement it once before 0.4.0 release but either it was too much work at that time (just before the release) or there was some restriction coming from the engine - I don't remember now. If it's the 1st thing then we will surely add it. Chuckun 1 Link to comment Share on other sites More sharing options...
Chuckun Posted December 8, 2011 Author Share Posted December 8, 2011 (edited) It may very well be the engine since it was only designed to send to an array of matching players with the defined string in their name.. However, im not sure if a mod could simply do a loop, sending the PM to each player chosen in the list.. As I've said previously, I never delved into ET scripting let alone mod development, so I have no idea about the limitations and/or language it uses Only way I can explain what I mean is in my own made up programming language (upon reflection, it seems to be PHP crossed with jscript) lol message = var message; players = array(selectedplayers); foreach players as player { sendpm(player, message); } I hope that clearly explains what I mean by looping through selected recipients.. Edited December 8, 2011 by Chuckun Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 7, 2012 Management Share Posted May 7, 2012 Implemented Available since: 0.5.2 However there is one limitation to it: server can't have the g_floodprotect cvar enabled or the flood protection cvars have to be tuned up for it. Otherwise the PM will be sent only to one player. Link to comment Share on other sites More sharing options...
Chuckun Posted May 7, 2012 Author Share Posted May 7, 2012 Implemented Available since: 0.5.2Awesome! Thank you! However there is one limitation to it: server can't have the g_floodprotect cvar enabled or the flood protection cvars have to be tuned up for it. Otherwise the PM will be sent only to one player.Makes sense.. Perhaps in the future, if the engine allows it, this could be altered by changing how g_floodprotect works.. (ie, checking if it's a PM to multiple people, or a repeated PM to one person). Great job guys! Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 7, 2012 Management Share Posted May 7, 2012 yes, we could make the change on the server side, to block too quickly repeated multi message. I haven't thought about that yet though, how to do it Link to comment Share on other sites More sharing options...
Chuckun Posted May 7, 2012 Author Share Posted May 7, 2012 (edited) yes, we could make the change on the server side, to block too quickly repeated multi message. I haven't thought about that yet though, how to do it I should take a look at etpub source code or something and learn roughly how these things work because I'm a decent PHP programmer so I have the correct mind for programming any language I suppose (in terms of knowing how to approach creating a method or function), that way I could probably help out with these things rather than just throw suggestions at you all the time lol. Essentially youd need to 1 - check if the flood is a PM. 2 - if its a PM, check for the names in each PM array to see if they are the same or varying . 3 - pass it if the names are not duplicates, block it if they are. Edited May 7, 2012 by Chuckun Link to comment Share on other sites More sharing options...
Dookie Posted May 8, 2012 Share Posted May 8, 2012 great idea Chuckun, anyway, when is 0.5.2 coming out? Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 8, 2012 Management Share Posted May 8, 2012 I forgot to mention that there is another limitation: max 10 slections If you think it's not enough, then I can raise it. But it's the restriction to not let people spam too many players and the other thig is who would like to send PM to more than 10 people anyway? If I am wrong in my assumptions, please state your opinion Link to comment Share on other sites More sharing options...
Chuckun Posted May 8, 2012 Author Share Posted May 8, 2012 (edited) I forgot to mention that there is another limitation: max 10 slections If you think it's not enough, then I can raise it. But it's the restriction to not let people spam too many players and the other thig is who would like to send PM to more than 10 people anyway? If I am wrong in my assumptions, please state your opinion Nah that's enough IMO. No need to send PM to everyone on the server lol. Edited May 8, 2012 by Chuckun Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 8, 2012 Management Share Posted May 8, 2012 Multiple PMs can now override flood protection if admin decides so. More details soon. Chuckun 1 Link to comment Share on other sites More sharing options...
Management hellreturn Posted May 8, 2012 Management Share Posted May 8, 2012 great idea Chuckun, anyway, when is 0.5.2 coming out? When it's ready We never give out release dates or else u might see flood of admins asking why it's not yet released. Link to comment Share on other sites More sharing options...
Dookie Posted May 8, 2012 Share Posted May 8, 2012 When it's ready We never give out release dates or else u might see flood of admins asking why it's not yet released. ok np, but its good to know that ur working on it Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 9, 2012 Management Share Posted May 9, 2012 OK, the problem with flood protection has been resolved. Multiple Private Messages work now like normal PMs.There is the new command to send multiple messages:ml ml 5 3 4 6 7 1 messageml - cmd name5 - number of recipients3,4,6,7,1 - recipients ids, have to be numbers - won't work otherwisemessage - message itself Chuckun 1 Link to comment Share on other sites More sharing options...
Chuckun Posted May 9, 2012 Author Share Posted May 9, 2012 (edited) Awesome! For once it'll be easier to use the private message 'window' than the console! Now thats a first! xD (assuming of course that you were able to implement the multi-selection thing I mentioned in my OP anyways ) This really is a nifty function though.. Especially if you got visual multi selection working.. I've never seen that within ET. Keep up the great work guys, really! <3 Edited May 9, 2012 by Chuckun Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted May 9, 2012 Management Share Posted May 9, 2012 assuming of course that you were able to implement the multi-selection thing I mentioned in my OP anywaysHere is the proof Hope you are satisfied. Chuckun and Zer0o0 2 Link to comment Share on other sites More sharing options...
Chuckun Posted May 9, 2012 Author Share Posted May 9, 2012 I am indeed! That looks incredible Link to comment Share on other sites More sharing options...
Recommended Posts