SA-MP Forums Archive
[Include] [INC] Rank/Level System [Version 2.0] - 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] [INC] Rank/Level System [Version 2.0] (/showthread.php?tid=30650)

Pages: 1 2 3 4


Re: [INC] Rank/Level System [Version 2.0] - Kyro - 18.02.2011

ok take a look at this

i didnt modify the inc

and i put it in pawno/include
and made the "PlayerFiles" File in script files
Script:

includes:
Код:
#include <a_samp>
#include <a_players>
#include <Ranks>

#if defined FILTERSCRIPT
OnGameModeInit:
Код:
public OnGameModeInit()
{      //Ranks/Levels
	SetPromotionMode(1);
        AddRank(1, "Level2", 1, 10000, 100, 100, 20, 30);
	return 1;
}
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/level", true) == 0)
	{
  		GetRankInfo(playerid);
  		return 1;
	}

	if(strcmp(cmdtext, "/mystats", true) == 0)
	{
  		GetPlayerStats(playerid);
  		return 1;
	}
	return 0;
}
commands are working fine
i set promotion mode to 1
and the requirements to 1

and out in script files i change the user time played in server to

0 hours
59 minutes so it should rank up in 1min
but nothing happen why??

i typed /mystats

rank :0 --
time:1h 3min
nothing happened
can u help me please


Re: [INC] Rank/Level System [Version 2.0] - Zh3r0 - 18.02.2011

Quote:
Originally Posted by Kyro
Посмотреть сообщение
ok take a look at this

i didnt modify the inc

and i put it in pawno/include
and made the "PlayerFiles" File in script files
Script:

includes:
Код:
#include <a_samp>
#include <a_players>
#include <Ranks>

#if defined FILTERSCRIPT
OnGameModeInit:
Код:
public OnGameModeInit()
{      //Ranks/Levels
	SetPromotionMode(1);
        AddRank(1, "Level2", 1, 10000, 100, 100, 20, 30);
	return 1;
}
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/level", true) == 0)
	{
  		GetRankInfo(playerid);
  		return 1;
	}

	if(strcmp(cmdtext, "/mystats", true) == 0)
	{
  		GetPlayerStats(playerid);
  		return 1;
	}
	return 0;
}
commands are working fine
i set promotion mode to 1
and the requirements to 1

and out in script files i change the user time played in server to

0 hours
59 minutes so it should rank up in 1min
but nothing happen why??

i typed /mystats

rank :0 --
time:1h 3min
nothing happened
can u help me please
Ok let me explain, your stats will never get updated IN-GAME until you do a function for that. Your account will be saved on exit.
The server runs a timer to check the online time each minute, it updates a variable, but not the account.

Change thing into your account, (While not in game) and reconnect. you will rankup.

You set minutes 59 in your account, but in-game the variable jsut got time to update up to 5-6 minutes.


Re: [INC] Rank/Level System [Version 2.0] - Kyro - 18.02.2011

do u mean that the server ingame update my stats in 5-6 mins??

if so how to make it like 30 sec or 1min

if not explain more please and tell me what to do
thank you


Re: [INC] Rank/Level System [Version 2.0] - Zh3r0 - 18.02.2011

Quote:
Originally Posted by Kyro
Посмотреть сообщение
do u mean that the server ingame update my stats in 5-6 mins??

if so how to make it like 30 sec or 1min

if not explain more please and tell me what to do
thank you
Take a look into the include and see which variable gets update by what timer.
Take that variable and use it in game, as a command like /setonlinetime.


Re: [INC] Rank/Level System [Version 2.0] - Davz*|*Criss - 13.03.2011

Nice thanks


Re: [INC] Rank/Level System [Version 2.0] - Bliitzz - 13.03.2011

Very nice, Useless to me though.


Re: [INC] Rank/Level System [Version 2.0] - SpiderWalk - 15.05.2011

I cant uderstand this?!


Re: [INC] Rank/Level System [Version 2.0] - [M.A]Angel[M.A] - 16.05.2011

nice work


Re: [INC] Rank/Level System [Version 2.0] - [BP]Tony - 24.06.2011

Very great !


AW: [INC] Rank/Level System [Version 2.0] - Forbidden - 24.06.2011

Great work.


Re: [INC] Rank/Level System [Version 2.0] - misho1 - 03.08.2011

GJ!!!!


Re: [INC] Rank/Level System [Version 2.0] - Ratzu - 04.08.2011

Hey, I'm new to scripting and I'm making a DM server, I'm trying to use this include, but the server crashes whenever I uncomment this line:
pawn Код:
OnPlayerConnect(playerid)
{
//S_OnPlayerConnect(playerid);
And when the line is commented, the stats don't update, I have all the includes and the script gives no errors or warnings when compiling. I've tried it with no filterscripts and no plugins, but the server still crashes. Please help me.

Never mind, I fixed it, forgot to make the PlayerFiles folder in scriptfiles.


Re: [INC] Rank/Level System [Version 2.0] - suhrab_mujeeb - 09.08.2011

wow the best inc ever, really helpful to me
ur great



Re: [INC] Rank/Level System [Version 2.0] - FireWol - 10.08.2011

I will use this on my server thx


Re: [INC] Rank/Level System [Version 2.0] - xMaGmOtAnEtHx - 21.09.2012

Amazing is it possible to make admin command of /setrank? Please help!


Re: [INC] Rank/Level System [Version 2.0] - Jason_Statham - 22.09.2012

can we give more weapon ?? if we can how ??