Need Explanation
#1

Hello.

So I am still new at scripting and I need an explanation.

For Example:

I have my sex dialog:

PHP Code:
case 0:
                    {
                        new 
INI:File INI_Open(UserPath(playerid));
                        
INI_SetTag(File"data");
                        
INI_WriteInt(File,"Spol",0);
                        
INI_Close(File);
                        
SendClientMessage(playerid,-1,"{00C0FF}WG:{FFFFFF} Odabrali ste spol: muљko");
                    }
                    case 
1:
                    {
                        new 
INI:File INI_Open(UserPath(playerid));
                        
INI_SetTag(File"data");
                        
INI_WriteInt(File,"Spol",1);
                        
INI_Close(File);
                        
SendClientMessage(playerid,-1,"{00C0FF}WG:{FFFFFF} Odabrali ste spol: ћensko");
                    } 
Right here you can see my code.
I want to make instead of this:

PHP Code:
INI_WriteInt(File,"Spol",0); 
To save it something like this:

PHP Code:
INI_WriteInt(File,"Spol",Male); 
And here i need help and explanation how to save it in words instead of numbers. Thanks
Reply


Messages In This Thread
Need Explanation - by NoDi522 - 21.03.2015, 13:41
Re: Need Explanation - by De4dpOol - 21.03.2015, 13:53
Re: Need Explanation - by NoDi522 - 21.03.2015, 14:33

Forum Jump:


Users browsing this thread: 1 Guest(s)