Posts: 6,129
Threads: 36
Joined: Jan 2009
You've got to format a string, and send the message. An example of this would be:
pawn Код:
new
szMessage[128];
format(szMessage, sizeof(szMessage), "Cash: %d", INI_ReadInt("Cash"));
SendClientMessage(playerid, -1, szMessage);
EDIT: Didn't see [HiC]'s post.
Posts: 201
Threads: 43
Joined: Apr 2011
Reputation:
0
how would i send more than one variable at a time
Posts: 201
Threads: 43
Joined: Apr 2011
Reputation:
0
Ive done that what you said but it only shows the first part of it which is Account: Cash and then it says 75 but there is 20000 in there =S
Posts: 2,629
Threads: 40
Joined: Mar 2008
Reputation:
0
Your file system must not be reading and storing the variables properly.
Posts: 201
Threads: 43
Joined: Apr 2011
Reputation:
0
Haha you reminded me that i needed to open the file first haha thanks for the help it works now =P