Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot SA-MP Releases Libraries [Library] LY (Unsigned Long)

 
  • 0 Vote(s) - 0 Average
Library LY (Unsigned Long)
AbyssMorgan
Offline

Burgershot Member
Posts: 63
Threads: 25
Joined: Apr 2021
Reputation: 8
Location: Poland
#1
2021-04-18, 11:52 AM
Hello, I would like to present the function to use the "unsigned long", or at least to increase the limit of numbers to
2 147 483 647 000 000 000

Code:
LY.inc
Copyright © 2021 Abyss Morgan. All rights reserved.

Website: https://adm.ct8.pl

Plugins: None
Modules: None

File Version: 1.6.1

Pawn Unsigned Long for 32 Bit language (precision 61-bit)
Available limit:
0 - 2 147 483 647 000 000 000
0 - 2 000 000 000 000 000 000

Functions:
IsValueContainLY(prefix,suffix,value);
GetLYString(prefix,suffix,string[],maxdest = sizeof(string));
LYStringToLY(&prefix,&suffix,const string[]); //Reverse to GetLYString
UpdateLY(&prefix,&suffix,value,limitprefix = DEFAULT_MAX_LY_PREFIX);
AddSeparatorLY(string[],const separator[]);
DeleteSeparatorLY(const string[],const separator[]);
CalculatePercentLY(&prefix,&suffix,Float:percent = 0.0,increase = true,limitprefix = DEFAULT_MAX_LY_PREFIX);
GetPercentLY(prefix,suffix,&o_prefix,&o_suffix,Float:percent = 0.0,limitprefix = DEFAULT_MAX_LY_PREFIX);

Operators:
IsLYEqual(prefix,suffix,from_prefix,from_suffix);
IsLYSmallerThan(prefix,suffix,from_prefix,from_suffix);
IsLYSmallerThanOrEqual(prefix,suffix,from_prefix,from_suffix);
IsLYBiggerThan(prefix,suffix,from_prefix,from_suffix);
IsLYBiggerThanOrEqual(prefix,suffix,from_prefix,from_suffix);

Example for bank system:
Code:
pVar[playerid][pMoney] - your variable suffix
pVar[playerid][pMoneyLY] - your variable prefix
//adding money to the bank
UpdateLY(pVar[playerid][pMoneyLY], pVar[playerid][pMoney], amount); //<-- set your amount
GivePlayerMoney(playerid,-amount);
//the payment from the bank
if(IsValueContainLY(pVar[playerid][pMoneyLY], pVar[playerid][pMoney], amount)){ //<-- set your amount
    UpdateLY(pVar[playerid][pMoneyLY], pVar[playerid][pMoney], -amount);
    GivePlayerMoney(playerid,amount);
} else {
    //you do not have enough money
}
//The amount of money in bank
new mymoney[LY_STRING_LEN], buffer[128];
GetLYString(pVar[playerid][pMoneyLY], pVar[playerid][pMoney], mymoney);
format(buffer,sizeof buffer,"You money in bank: %s",mymoney);
SendClientMessage(playerid,-1,buffer); 

Download:
LY.inc
« Next Oldest | Next Newest »



  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald

Linear Mode
Threaded Mode