09.02.2015, 19:37
Quote:
If you are talking about reading live /pm messaging on the forum, you won't find any FS for that (except an admin script that includes /pm).
Most people send PMs with SendClientMessage or SendPlayerMessageToPlayer.. There is no way to detect whether such a message is being sent, therefore no secondary script (FS) could provide such a feature.. The solution to this is to create a player variable like pawn Код:
Then you would run a loop when a player uses the /pm command. Let's say you used SendClientMessage to send the PM. Then you would have some variable (let's call it "string") that stores the text... E.G. pawn Код:
something like this: pawn Код:
a player would (in this version) have to use a command to enable reading, which would be done inside of the command with pawn Код:
|
if you want a solution that fits to your PM system, you won't get around of posting your PM command and your definition (variables) for admins here...