Register for your free account! | Forgot your password?

You last visited: Today at 01:30

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Item Expiration

Discussion on Item Expiration within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Item Expiration

can anyone help me how to add expiration on items?
babyminion is offline  
Old 04/16/2017, 09:42   #2
 
elite*gold: 0
Join Date: Jan 2009
Posts: 99
Received Thanks: 52
Item expiration time can be added in propItem.txt or spec_Item.txt, depending which version you use.

If you want expiration on items that are Tickets or Weapons etc -> (10080 Minutes = 7 days)

Code:
11	II_SYS_TICKET_KEBARAS01	IDS_PROPITEM_TXT_009076	1	1	IK1_SYSTEM	IK2_SYSTEM	IK3_TICKET	=	TRUE	1	=	4	=	=	=	=	=	=	=	0	=	=	1	=	=	1	1	=	=	[COLOR="Red"]10080[/COLOR]	=	_NONE	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	999999999	=	WUI_NOW	=	=	=	=	=	=	=	=	=	0	0	0	0	0	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	"""Itm_SysTicketKebaras.dds"""	0	""""""	IDS_PROPITEM_TXT_009077
If you want expiration on items that are buffs (Balloons, cookies etc) -> (21600000 Miliseconds = 6 Hrs

Code:
11	II_SYS_SYS_SCR_COTTONCANDYVIOLET_01	IDS_PROPITEM_TXT_009292	1	99	IK1_SYSTEM	IK2_BUFF	IK3_POTION_BUFF_STA	=	=	1	=	20	=	=	=	=	=	=	=	0	=	=	1	=	=	1	1	=	=	=	=	_NONE	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	DST_STA	=	=	3	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	XI_SYS_EXCHAN01	=	=	=	=	[COLOR="red"][B]21600000[/B][/COLOR]	=	WUI_NOW	=	=	=	=	=	=	=	=	=	0	0	0	0	0	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	"""Itm_SysSysScrCottonCandyViolet.dds"""	0	""""""	IDS_PROPITEM_TXT_009293
You could also choose expire time using propPackItem.inc (If you do not want to edit every item in propitem.txt/spec_item

Example Tuxedo Set (fashion)
Code:
PackItem	II_SYS_SYS_SCR_BXMTUXEDO04	10080 // <<--- 10080 = 7 days
{
	II_ARM_M_CHR_TUXEDO01SUIT	0	1      // <<--- Tuxedo Suit
	II_ARM_M_CHR_TUXEDO01GLOVES	0	1      // <<--- Tuxedo Gloves
	II_ARM_M_CHR_TUXEDO01SHOES	0	1      // <<--- Tuxedo Shoes
}
Can be used for normal items too, example cs pet for 1 month

Code:
PackItem	II_SYS_SYS_SCR_BXBABYAIBATT	40320 // <<--- = 28 days
{
	II_PET_AIBATT1	0	1      // <<--- Baby Aibatt Pet
}
Which will expire 28 days after opening the box.

Hope it helps
dpkidz is offline  
Thanks
2 Users
Old 04/16/2017, 16:35   #3
 
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Quote:
Originally Posted by dpkidz View Post
Item expiration time can be added in propItem.txt or spec_Item.txt, depending which version you use.

If you want expiration on items that are Tickets or Weapons etc -> (10080 Minutes = 7 days)

Code:
11	II_SYS_TICKET_KEBARAS01	IDS_PROPITEM_TXT_009076	1	1	IK1_SYSTEM	IK2_SYSTEM	IK3_TICKET	=	TRUE	1	=	4	=	=	=	=	=	=	=	0	=	=	1	=	=	1	1	=	=	[COLOR="Red"]10080[/COLOR]	=	_NONE	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	999999999	=	WUI_NOW	=	=	=	=	=	=	=	=	=	0	0	0	0	0	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	"""Itm_SysTicketKebaras.dds"""	0	""""""	IDS_PROPITEM_TXT_009077
If you want expiration on items that are buffs (Balloons, cookies etc) -> (21600000 Miliseconds = 6 Hrs

Code:
11	II_SYS_SYS_SCR_COTTONCANDYVIOLET_01	IDS_PROPITEM_TXT_009292	1	99	IK1_SYSTEM	IK2_BUFF	IK3_POTION_BUFF_STA	=	=	1	=	20	=	=	=	=	=	=	=	0	=	=	1	=	=	1	1	=	=	=	=	_NONE	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	DST_STA	=	=	3	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	XI_SYS_EXCHAN01	=	=	=	=	[COLOR="red"][B]21600000[/B][/COLOR]	=	WUI_NOW	=	=	=	=	=	=	=	=	=	0	0	0	0	0	0	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	=	"""Itm_SysSysScrCottonCandyViolet.dds"""	0	""""""	IDS_PROPITEM_TXT_009293
You could also choose expire time using propPackItem.inc (If you do not want to edit every item in propitem.txt/spec_item

Example Tuxedo Set (fashion)
Code:
PackItem	II_SYS_SYS_SCR_BXMTUXEDO04	10080 // <<--- 10080 = 7 days
{
	II_ARM_M_CHR_TUXEDO01SUIT	0	1      // <<--- Tuxedo Suit
	II_ARM_M_CHR_TUXEDO01GLOVES	0	1      // <<--- Tuxedo Gloves
	II_ARM_M_CHR_TUXEDO01SHOES	0	1      // <<--- Tuxedo Shoes
}
Can be used for normal items too, example cs pet for 1 month

Code:
PackItem	II_SYS_SYS_SCR_BXBABYAIBATT	40320 // <<--- = 28 days
{
	II_PET_AIBATT1	0	1      // <<--- Baby Aibatt Pet
}
Which will expire 28 days after opening the box.

Hope it helps
this is great dude btw on packitem when i double click the box/etc all items in the box are have expiration too?
babyminion is offline  
Old 04/16/2017, 19:11   #4
 
elite*gold: 0
Join Date: Jan 2009
Posts: 99
Received Thanks: 52
I have never tried it out but I would think so yes
dpkidz is offline  
Thanks
1 User
Old 04/17/2017, 08:35   #5
 
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Thanks dude!
babyminion is offline  
Old 04/17/2017, 15:57   #6
 
Ecrypter's Avatar
 
elite*gold: 0
Join Date: Aug 2014
Posts: 653
Received Thanks: 217
If you pack the code have expiration. It will appear the time
Iimit when you unpack the box. And put days of box to separately the item
Ecrypter is offline  
Reply


Similar Threads Similar Threads
[HELP] VIP Expiration
05/25/2015 - CO2 Private Server - 0 Replies
Could anyone help me about the VIP Expiration?
[Help] Items with expiration date
01/29/2013 - EO PServer Hosting - 0 Replies
does any one knows how to make an item that will expire after a week for an example obsidian gift that will expire after a week if any one knows how to make that it would be great
Nid Deka. Sea Bot w/o expiration
06/17/2009 - Dekaron - 4 Replies
As the title said
About Qmacro Expiration
04/15/2008 - Cabal Online - 3 Replies
recently my qmacro got the trial version expired, i was wondering if theres anyway to re-install it again without paying it thanks in advance.



All times are GMT +2. The time now is 01:30.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.