08.04.2018, 03:23
Quote:
new string[MAX_PLAYERS], - would likely be too big to send.
change to new string[ 144 ], - this is the largest string you can send with SendClientMessage. ForCop already changed that in his code but he also removed the functionality to send the message within your virtual world and left another mistake. You return 0 every loop iteration within vip, admin and normal chats. Move the return 0; outside of the loops like this. When you return 0; it stops everything so you only want to return after you send the correct messages to everyone you need. PHP код:
|