[Include] dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)!

It saves vehicles and other stuff, but ranks i save actually save but won't load.
Код:
CMD:addranks(playerid, params[])
{
	new giveplayerid, rank, string[256], strings[256], tmp[256], giveplayers[256];
	if (orgleader[playerid] == 0) return SendClientMessage2(playerid, COLOR_RED, "Error:{FFFFFF} You aren't the (co)leader of an organization.");
	if(sscanf(params, "d",rank)) return SendClientMessage(playerid, COLOR_WHITE,"USAGE: /addranks [rank]");
	if(rank > 12) return SendClientMessage(playerid, COLOR_WHITE,"Error:{FFFFFF} You can add only 12 ranks to your Orginization!");
	if(rank < 1) return SendClientMessage(playerid, COLOR_WHITE,"Error:{FFFFFF} Ranks must be greater then 1 rank!");
	giveplayerid = GetPVarInt(playerid, "playerorg");
	format(string, 10, "org%d", giveplayerid);
	new temp = dini_Int(AddDirFile(dir_orgfiles, string), "AmountRanks");
	if(temp != 0) return SendClientMessage(playerid, COLOR_RED, "Error:{FFFFFF} You have already set ranks to this Orginization!");
	for(new i = 1; i<= rank; i++)
	{
	    format(giveplayers, 12, "rank%d", i);
	    format(tmp, 12, "rankcolor%d", i);
	    dini_Set(AddDirFile(dir_orgfiles, string), giveplayers, "none");
	    dini_IntSet(AddDirFile(dir_orgfiles, string), "AmountRanks", i);
	}
	format(strings, sizeof(strings), "You have created %d ranks for your organization", rank);
	SendClientMessage(playerid,COLOR_LBLUE, strings);
	return 1;
}
CMD:dranks(playerid, params[])
{
	new giveplayerid, string[256], tmp[256], giveplayers[256], tmps[256], tmp2[256];
    if (orgleader[playerid] == 0) return SendClientMessage2(playerid, COLOR_RED, "Error:{FFFFFF} You aren't the (co)leader of an organization.");
	giveplayerid = GetPVarInt(playerid, "playerorg");
	format(string, 10, "org%d", giveplayerid);
	new temp = dini_Int(AddDirFile(dir_orgfiles, string), "AmountRanks");
	if(temp == 0) return SendClientMessage(playerid, COLOR_RED, "Error:{FFFFFF} You have already delete ranks to this Orginization!");
	else if(temp != 0)
	{
	    new temp1 = dini_Int(AddDirFile(dir_orgfiles, string), "maxmembers");
		for(new j = 1; j <= temp1; j++)
		{
		    format(tmps, 12, "member%d", j);
			tmp2 = dini_Get(AddDirFile(dir_orgfiles, string), tmps);
			if(strcmp(tmp2, "server", false) != 0)
			{
				dini_Unset(AddDirFile(dir_orgfiles, tmp2), "RankName");
				dini_Unset(AddDirFile(dir_orgfiles, tmp2), "Rank");
				dini_Unset(AddDirFile(dir_orgfiles, tmp2), "RankColor");
			}
		}
		for(new i = 1; i <= temp; i++)
		{
			format(giveplayers, 12, "rank%d", i);
			format(tmp, 12, "rankcolor%d",i);
			dini_Unset(AddDirFile(dir_orgfiles, string), giveplayers);
			dini_Unset(AddDirFile(dir_orgfiles, string), tmp);
			dini_IntSet(AddDirFile(dir_orgfiles, string), "AmountRanks", 0);
		}
	}
    SendClientMessage(playerid, COLOR_RED, "You have deleted all created ranks from your Organization!");
	return 1;
}
CMD:rankname(playerid, params[])
{
    new tmp2[256], tmp[20], tmp3[20],number, string[20], str[120], color[128],giveplayer[256],tmp7[256];
    if (orgleader[playerid] != 1) return SendClientMessage2(playerid, COLOR_RED, "Error:{FFFFFF} You aren't the leader of an organization.");
    if (sscanf(params, "ds[128]s[128]", number, color,tmp2)) return SendClientMessage2(playerid, COLOR_WHITE, "Usage: /rankname [rank number] [rank color] [rank name]");
    new giveplayerid = GetPVarInt(playerid, "playerorg");
    format(string, 10, "org%d", giveplayerid);

    new temp4 = dini_Int(AddDirFile(dir_orgfiles, string), "maxmembers");

    for (new c = 1; c <= number; c++)
    {
    	format(tmp, 12, "rank%d", number);
    	format(tmp3, 12, "rankcolor%d", number);
        if (!dini_Isset(AddDirFile(dir_orgfiles, string), tmp))
		{
		 SendClientMessage2(playerid, COLOR_RED, "Rank on this spot is not created yet.");
		 return 1;
		}
		dini_Set(AddDirFile(dir_orgfiles, string), tmp, tmp2);
		dini_Set(AddDirFile(dir_orgfiles, string), tmp3, color);
		if (temp4 != 0)
		{
				for (new i = 1; i <= temp4; i++)
				{
					format(giveplayer, 12, "member%d", i);
	                tmp7 = dini_Get(AddDirFile(dir_orgfiles, string), giveplayer);
					if (dini_Isset(AddDirFile(dir_userfiles, tmp7), "RankName") && dini_Int(AddDirFile(dir_userfiles, tmp7), "Rank") == number)
			        {
						dini_Set(AddDirFile(dir_userfiles, tmp7), "RankName", tmp2);
						dini_Set(AddDirFile(dir_userfiles, tmp7), "RankColor", color);
					}
				}
		}
	}
	format(str, sizeof(str), "You have set rank %d name to %s with color {%s}%s", number, tmp2, color, color);
	SendClientMessage(playerid, COLOR_WHITE, str);
	return 1;
}
CMD:setrank(playerid, params[])
{
	new giveplayerid, rank, pname[64], str[150], string[10], tmp[10], tmp2[15], tmp6[256];
    new giveplayerids = GetPVarInt(playerid, "playerorg");
    if (sscanf(params, "ud", giveplayerid, rank)) return SendClientMessage2(playerid, COLOR_WHITE, "Usage: /setrank [playerid] [rank]");
    if (!IsPlayerConnected2(giveplayerid)) return SendClientMessage2(playerid, COLOR_RED, "Error:{FFFFFF} Inactive player id!");
    format(string, 10, "org%d", giveplayerids);
    GetPlayerName(giveplayerid,pname, MAX_PLAYER_NAME);
    new maxranks = dini_Int(AddDirFile(dir_orgfiles, string), "Amountranks");
    new currrank = dini_Int(AddDirFile(dir_userfiles, pname), "Rank");
	if (maxranks == 0) return SendClientMessage2(playerid, COLOR_RED, "There is no ranks created in your organization.");
	if(rank > maxranks || rank < 1) return SendClientMessage2(playerid, COLOR_RED, "Invalid rank!");
	if(rank == currrank) return SendPlayerFormattedText(playerid, COLOR_RED, "%s is already have that rank!", pname, "");
	if(rank > maxranks) return SendClientMessage2(playerid, COLOR_RED, "No rank found!");
    if (GetPVarInt(giveplayerid, "playerorg") != GetPVarInt(playerid, "playerorg")) return SendPlayerFormattedText(playerid, COLOR_RED, "%s is not in your organization!", pname, "");
    for (new c = 1; c <= rank; c++)
    {
    	format(tmp, 12, "rank%d", rank);
    	format(tmp2, 12, "rankcolor%d", rank);
	}
	tmp6 = dini_Get(AddDirFile(dir_orgfiles, string), tmp);
	if (strcmp(tmp6, "None", false) == 0) return SendClientMessage(playerid,COLOR_RED,"Choose a name for this rank first.");

	if (giveplayerid != playerid)
	{
    	    format(str,sizeof(str),"You have set %s rank to {%s}%s", pname,dini_Get(AddDirFile(dir_orgfiles, string), tmp2),dini_Get(AddDirFile(dir_orgfiles, string), tmp));
	        SendClientMessage(playerid, COLOR_YELLOW,str);

			format(str,sizeof(str),"Your leader has set your to rank {%s}%s", dini_Get(AddDirFile(dir_orgfiles, string), tmp2), dini_Get(AddDirFile(dir_orgfiles, string), tmp));
	        SendClientMessage(giveplayerid, COLOR_YELLOW,str);
	}
	else
	{
		 	format(str,sizeof(str),"You have set your rank to {%s}%s", dini_Get(AddDirFile(dir_orgfiles, string), tmp2), dini_Get(AddDirFile(dir_orgfiles, string), tmp));
	        SendClientMessage(playerid, COLOR_YELLOW,str);
	}
	dini_IntSet(AddDirFile(dir_userfiles, pname), "Rank", rank);
	dini_Set(AddDirFile(dir_userfiles, pname), "RankName", dini_Get(AddDirFile(dir_orgfiles, string), tmp));
	dini_Set(AddDirFile(dir_userfiles, pname), "RankColor", dini_Get(AddDirFile(dir_orgfiles, string), tmp2));
	return 1;
}
Reply


Messages In This Thread
dini2.inc - Improved dini file processor with amazing performance (aka. gini)! - by Gammix - 05.07.2016, 23:13
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Dayvison_ - 06.07.2016, 00:59
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 06.07.2016, 01:12
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Uberanwar - 06.07.2016, 01:19
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Shady - 06.07.2016, 02:26
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 06.07.2016, 03:02
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Shady - 06.07.2016, 03:11
Re: gini.inc - Fast multi file processor with "dini's" syntax - by WhiteGhost - 06.07.2016, 03:36
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 06.07.2016, 03:54
Re: gini.inc - Fast multi file processor with "dini's" syntax - by SystemX - 06.07.2016, 04:11
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Ritzy2K - 06.07.2016, 05:04
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Yashas - 06.07.2016, 12:56
Re: gini.inc - Fast multi file processor with "dini's" syntax - by GhostHacker - 06.07.2016, 13:15
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 08.07.2016, 00:43
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Kar - 08.07.2016, 04:54
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 08.07.2016, 05:20
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Romz - 08.07.2016, 06:37
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 08.07.2016, 14:43
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 08.07.2016, 17:35
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Dalayma - 09.07.2016, 17:01
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 09.07.2016, 17:23
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Dalayma - 09.07.2016, 20:53
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 09.07.2016, 21:01
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Yashas - 15.07.2016, 17:30
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 15.07.2016, 19:22
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Sioux - 21.07.2016, 18:57
Re: gini.inc - Fast multi file processor with "dini's" syntax - by iKarim - 21.07.2016, 19:10
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Dalayma - 26.07.2016, 16:02
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 27.07.2016, 04:39
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 14.11.2016, 14:56
Re: gini.inc - Fast multi file processor with "dini's" syntax - by 14_KaPaT - 14.11.2016, 18:17
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 14.11.2016, 18:30
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 15.11.2016, 22:35
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Vadyanga - 29.11.2016, 12:47
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Vadyanga - 29.11.2016, 12:49
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Zorono - 02.12.2016, 12:08
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 13.12.2016, 17:36
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 14.12.2016, 13:22
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 14.12.2016, 17:06
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 15.12.2016, 03:55
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 17.12.2016, 20:18
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 18.12.2016, 03:25
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 18.12.2016, 11:44
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 18.12.2016, 12:01
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 18.12.2016, 12:14
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 18.12.2016, 12:29
Re: gini.inc - Fast multi file processor with "dini's" syntax - by Gammix - 18.12.2016, 12:42
Re: gini.inc - Fast multi file processor with "dini's" syntax - by JokeyL - 18.12.2016, 12:57
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 18.12.2016, 13:16
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 18.12.2016, 13:32
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 28.12.2016, 13:29
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 28.12.2016, 16:38
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 28.12.2016, 17:12
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by CantBeJohn - 28.12.2016, 19:30
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 28.12.2016, 19:55
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by CantBeJohn - 28.12.2016, 20:16
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 29.12.2016, 12:45
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 08.01.2017, 15:59
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 11.01.2017, 18:06
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 11.01.2017, 19:02
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 12.01.2017, 17:41
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by czop1223 - 14.01.2017, 02:59
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 14.01.2017, 20:46
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 16.01.2017, 14:06
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Romz - 16.01.2017, 14:14
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 16.01.2017, 14:24
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 16.01.2017, 17:54
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 20.01.2017, 07:29
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 22.01.2017, 14:18
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Lordzy - 22.01.2017, 15:04
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 22.01.2017, 16:16
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Lordzy - 22.01.2017, 16:58
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 22.01.2017, 21:29
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 22.01.2017, 22:33
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 23.01.2017, 19:31
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by OneDay - 19.05.2017, 12:42
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 19.05.2017, 12:51
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 23.05.2017, 17:38
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by asri - 26.05.2017, 03:58
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by iLearner - 07.06.2017, 06:10
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 12.06.2017, 13:31
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 12.06.2017, 14:14
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 12.06.2017, 16:29
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 12.06.2017, 21:44
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by iLearner - 12.06.2017, 22:07
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 13.06.2017, 04:32
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Dalayma - 13.06.2017, 05:41
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 13.06.2017, 10:50
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Yousha - 06.07.2017, 17:40
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by iLearner - 21.08.2017, 21:42
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Belengher - 05.10.2017, 14:51
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 05.10.2017, 16:15
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 05.10.2017, 16:39
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 06.10.2017, 23:42
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by JokeyL - 08.10.2017, 21:48
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Marllun - 21.11.2017, 03:04
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Usmanmemon - 21.11.2017, 15:29
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 21.11.2017, 15:42
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Usmanmemon - 21.11.2017, 15:55
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 01.12.2017, 18:00
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Marllun - 11.12.2017, 03:40
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 11.12.2017, 04:13
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by haikalbintang - 16.12.2017, 00:00
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 16.12.2017, 23:03
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by RoyalGamer - 17.12.2017, 04:20
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 05.01.2018, 19:02
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by RogueDrifter - 05.01.2018, 19:11
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 05.01.2018, 23:37
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by RogueDrifter - 05.01.2018, 23:50
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 06.01.2018, 00:58
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by RogueDrifter - 06.01.2018, 02:27
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by haikalbintang - 20.01.2018, 09:38
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by RogueDrifter - 20.01.2018, 09:50
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by haikalbintang - 20.01.2018, 10:49
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by ItzColaBoi - 01.02.2018, 12:00
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 01.02.2018, 18:26
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Unkovic - 24.02.2018, 11:55
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by ItzColaBoi - 24.02.2018, 12:10
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by insus100 - 07.03.2018, 14:27
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 07.03.2018, 14:52
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by insus100 - 07.03.2018, 14:56
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 13:14
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 10.03.2018, 17:40
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 18:06
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 18:31
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 10.03.2018, 18:37
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 18:38
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 10.03.2018, 19:20
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 19:24
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 10.03.2018, 19:30
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 19:38
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Gammix - 10.03.2018, 20:28
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Mike861 - 10.03.2018, 20:30
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Exhibit - 26.03.2018, 15:34
Re: dini2.inc - Improved dini file processor with amazing benchmarks (aka. gini)! - by Exhibit - 28.03.2018, 15:46

Forum Jump:


Users browsing this thread: 1 Guest(s)