Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: omaraiahlawy1 on Aug 30, 2015, 09:55 PM

Title: Can't Chat
Post by: omaraiahlawy1 on Aug 30, 2015, 09:55 PM
When I Type "t" the chat doesn't appear!
Title: Re: Can't Chat
Post by: Diego^ on Aug 30, 2015, 10:59 PM
You must add a "return 1;" in onPlayerChat event.

Example:
function onPlayerChat( player, text )
{
print( player.Name + ": " + text );
return 1;
}
Title: Re: Can't Chat
Post by: omaraiahlawy1 on Aug 30, 2015, 11:08 PM
Add This Where?
Title: Re: Can't Chat
Post by: Diego^ on Aug 30, 2015, 11:30 PM
Quote from: omaraiahlawy1 on Aug 30, 2015, 11:08 PMAdd This Where?

I think I must have this event in your script, search for it and add the "return 1;".
Title: Re: Can't Chat
Post by: omaraiahlawy1 on Aug 30, 2015, 11:59 PM
Solved,Thanks.