Quote:
Originally Posted by Konstantinos
Let's take this line as an example:
pawn Код:
case 0: PlayerInfo[playerid][pPhoneNumber], GetPVarInt(playerid,"Num1"), format(number, 50, "%s", GetPVarInt(playerid,"Num1"));
What you're basically doing is:
Код:
PlayerInfo[playerid][pPhoneNumber];
GetPVarInt(playerid,"Num1");
format(number, 50, "%s", GetPVarInt(playerid,"Num1"));
Those two lines (marked with red) have no effect like the warnings indicate, do they? Think again of what you are trying to do.
@Stinged: Confused with "inputtext".
|
Thanks dude i just realize what i was doing wrong lol.