18.02.2012, 16:02
Yeah, it's not looking strange, you're not loading the data from the files...
At OnGameModeInit( )
Something like this
At OnGameModeInit( )
pawn Код:
public OnGameModeInit()
{
new file[ 30 ]; format( file, 30,"saves/garage1.txt" );
new s_O[ MAX_PLAYER_NAME ];
if( fexist( file ) ) dini_Get( file, "Owner", s_O );
new 3D_Text[ 100 ];
format( 3D_Text, 100, "{FFAF00}Garage Number: {00FFEE}1\n{FFAF00}Price: {6EF83C}500 000LT\n{FFAF00}Owner: {11B5BE}%s", s_O);
Update3DTextLabelText( Garage, -1, 3D_Text );
return ( 1 );
}