22.04.2012, 19:30
Quote:
Thanks for the replies guys.
4/10 for creating some simple TextDraws that makes commands such as /cmds look a lot better. Rather than having the commands show in the chat with SendClientMessage. I have seen a lot of servers that show the commands in the chat and it just doesn't look right, so that's why I made this. Yes it didn't take me long to make but it's a small helpful script out there that will help a lot of people. 4/10, underrated in my opinion but it's your opinion. Anyway, thanks. |
sure its a good feature but
its not easy to edit for our own commands...
i have maybe.. maybe 3 of the commands you show.
when you release a filterscript it should be easy to edit for the server owner
otherwise you could have posted this as an example
its not really a system of any kind just an idea
and my main point was on strcmp...
youll never get a better rating from me when using functions like strcmp without a length for a command
a simple fix for that is add the length of the command, 2secs
pawn Code:
if((strcmp("/cmds", cmdtext, true,4) == 0) || (strcmp("/commands", cmdtext, true,8) == 0))
if you want some examples of how to make it easier to edit then PM me
and ill send ya something,
this could turn out to be a great filterscript for users!
i was not trying to insult you! so please dont take it as so,
just trying to help you improve your script for others.
regards,
edit:
one other thing is if only 1 textdraw will be shown at a time
then you only need to make 1 td, and just update the text it displays.
it could be using only 3 tds instead of 7