21.03.2015, 13:41
Hello.
So I am still new at scripting and I need an explanation.
For Example:
I have my sex dialog:
Right here you can see my code.
I want to make instead of this:
To save it something like this:
And here i need help and explanation how to save it in words instead of numbers. Thanks
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");
}
I want to make instead of this:
PHP Code:
INI_WriteInt(File,"Spol",0);
PHP Code:
INI_WriteInt(File,"Spol",Male);