help what this aka? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: help what this aka? (
/showthread.php?tid=625595)
help what this aka? -
Tween73 - 03.01.2017
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(strlen(dini_Get("Admin/logs/aka.txt", tmp3)) == 0)
dini_Set("Admin/logs/aka.txt", tmp3, PlayerName);
else
{
if( strfind( dini_Get("Admin/logs/aka.txt", tmp3), PlayerName, true) == -1 )
{
format(string,sizeof(string),"%s,%s", dini_Get("Admin/logs/aka.txt",tmp3), PlayerName);
dini_Set("Admin/logs/aka.txt", tmp3, string);
}
}
return 1;
}
Re: help what this aka? -
SyS - 04.01.2017

Aka means also known as
Re: help what this aka? -
iamjems - 04.01.2017
DO NOT USE DINI
Re: help what this aka? -
GoldenLion - 04.01.2017
Quote:
Originally Posted by iamjems
DO NOT USE DINI
|
https://sampforum.blast.hk/showthread.php?tid=611399
Re: help what this aka? -
Tween73 - 04.01.2017
Why? up...