Quote:
Originally Posted by Basicz
Try to change this
pawn Код:
GetPVarString(playerid, "HouseDesc", opis, strlen(opis)); // <---------------------
strlen?
pawn Код:
GetPVarString( playerid, "HouseDesc", opis, sizeof opis );
Should be sizeof, because opis doesn't even have a strlen.
|
Thank you very much! Everything works now.