Register for your free account! | Forgot your password?

You last visited: Today at 21:53

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

Advertisement



Element Card

Discussion on Element Card within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2017
Posts: 239
Received Thanks: 8
Element Card

Hi! I was wondering where to edit the upgrade chance of the Element Card? I am thinking it is in ItemUpgrade.lua and here
But I am not sure where and what numbers do I need to change... And not sure if this is the one... Thanks in advance!
nicksss03 is offline  
Old 07/02/2018, 11:19   #2
 
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
Here is mine
Code:
----------------------------------------------------------
-- Piercing (Probability n/10000 ) -----------------------
----------------------------------------------------------
tSuitProb = { 1500, 1250, 1000, 750 }
tWeaponProb = { 3250, 3000, 2750, 2500, 2250, 2000, 1750, 1500, 1250, 1000 }

----------------------------------------------------------
-- Global Upgrade Rates ----------------------------------
----------------------------------------------------------
tGeneral = { 10000, 10000, 7000, 5000, 4000, 3000, 2000, 1000, 500, 200 };
----------------------------------------------------------
-- Element Upgrading -------------------------------------
----------------------------------------------------------
tAttribute = {}
function AddAttribute( nNum, nProb, nDamageRate, nDefenseRate, nAddAtkDmgRate )
	tAttribute[nNum] = {}
	tAttribute[nNum].nProb = nProb
	tAttribute[nNum].nDamageRate = nDamageRate
	tAttribute[nNum].nDefenseRate = nDefenseRate
	tAttribute[nNum].nAddAtkDmgRate = nAddAtkDmgRate
end
--		Upgrade,	Probability,	Damage,			Defense,		Property compensation rate (excluding the value of refining all the values n/10000)
AddAttribute(	1,		10000,		200,			200,			500		)
AddAttribute(	2,		10000,		221,			221,			522		)
AddAttribute(	3,		10000,		256,			256,			560		)
AddAttribute(	4,		9000,		305,			305,			612		)
AddAttribute(	5,		8000,		368,			368,			680		)
AddAttribute(	6,		7000,		446,			446,			763		)
AddAttribute(	7,		6000,		537,			537,			860		)
AddAttribute(	8,		5000,		642,			642,			973		)
AddAttribute(	9,		4000,		761,			761,			1101		)
AddAttribute(	10,		3000,		895,			895,			1244		)
AddAttribute(	11,		2000,		1042,			1042,			1402		)
AddAttribute(	12,		1000,		1203,			1203,			1575		)
AddAttribute(	13,		900,		1379,			1379,			1763		)
AddAttribute(	14,		800,		1568,			1568,			1966		)
AddAttribute(	15,		700,		1772,			1772,			2184		)
AddAttribute(	16,		600,		1989,			1989,			2417		)
AddAttribute(	17,		500,		2221,			2221,			2665		)
AddAttribute(	18,		400,		2467,			2467,			2998		)
AddAttribute(	19,		300,		2726,			2726,			3207		)
AddAttribute(	20,		200,		3000,			3000,			3500		)

----------------------------------------------------------
-- Transy Probability (Do not touch!) --------------------
----------------------------------------------------------
nItemTransyLowLevel	= 500000
nItemTransyHighLevel	= 2000000
Dr. Peacock is offline  
Thanks
1 User
Old 07/02/2018, 11:24   #3
 
elite*gold: 0
Join Date: Jul 2017
Posts: 239
Received Thanks: 8
Quote:
Originally Posted by Dr. Peacock View Post
Here is mine
Code:
----------------------------------------------------------
-- Piercing (Probability n/10000 ) -----------------------
----------------------------------------------------------
tSuitProb = { 1500, 1250, 1000, 750 }
tWeaponProb = { 3250, 3000, 2750, 2500, 2250, 2000, 1750, 1500, 1250, 1000 }

----------------------------------------------------------
-- Global Upgrade Rates ----------------------------------
----------------------------------------------------------
tGeneral = { 10000, 10000, 7000, 5000, 4000, 3000, 2000, 1000, 500, 200 };
----------------------------------------------------------
-- Element Upgrading -------------------------------------
----------------------------------------------------------
tAttribute = {}
function AddAttribute( nNum, nProb, nDamageRate, nDefenseRate, nAddAtkDmgRate )
	tAttribute[nNum] = {}
	tAttribute[nNum].nProb = nProb
	tAttribute[nNum].nDamageRate = nDamageRate
	tAttribute[nNum].nDefenseRate = nDefenseRate
	tAttribute[nNum].nAddAtkDmgRate = nAddAtkDmgRate
end
--		Upgrade,	Probability,	Damage,			Defense,		Property compensation rate (excluding the value of refining all the values n/10000)
AddAttribute(	1,		10000,		200,			200,			500		)
AddAttribute(	2,		10000,		221,			221,			522		)
AddAttribute(	3,		10000,		256,			256,			560		)
AddAttribute(	4,		9000,		305,			305,			612		)
AddAttribute(	5,		8000,		368,			368,			680		)
AddAttribute(	6,		7000,		446,			446,			763		)
AddAttribute(	7,		6000,		537,			537,			860		)
AddAttribute(	8,		5000,		642,			642,			973		)
AddAttribute(	9,		4000,		761,			761,			1101		)
AddAttribute(	10,		3000,		895,			895,			1244		)
AddAttribute(	11,		2000,		1042,			1042,			1402		)
AddAttribute(	12,		1000,		1203,			1203,			1575		)
AddAttribute(	13,		900,		1379,			1379,			1763		)
AddAttribute(	14,		800,		1568,			1568,			1966		)
AddAttribute(	15,		700,		1772,			1772,			2184		)
AddAttribute(	16,		600,		1989,			1989,			2417		)
AddAttribute(	17,		500,		2221,			2221,			2665		)
AddAttribute(	18,		400,		2467,			2467,			2998		)
AddAttribute(	19,		300,		2726,			2726,			3207		)
AddAttribute(	20,		200,		3000,			3000,			3500		)

----------------------------------------------------------
-- Transy Probability (Do not touch!) --------------------
----------------------------------------------------------
nItemTransyLowLevel	= 500000
nItemTransyHighLevel	= 2000000
Haha. Dang. My files isn't english translated that is why I am so confuse about it hahaha! Thanks!

Quote:
Originally Posted by nicksss03 View Post
Haha. Dang. My files isn't english translated that is why I am so confuse about it hahaha! Thanks!
Quote:
Originally Posted by Dr. Peacock View Post
Here is mine
Code:
----------------------------------------------------------
-- Piercing (Probability n/10000 ) -----------------------
----------------------------------------------------------
tSuitProb = { 1500, 1250, 1000, 750 }
tWeaponProb = { 3250, 3000, 2750, 2500, 2250, 2000, 1750, 1500, 1250, 1000 }

----------------------------------------------------------
-- Global Upgrade Rates ----------------------------------
----------------------------------------------------------
tGeneral = { 10000, 10000, 7000, 5000, 4000, 3000, 2000, 1000, 500, 200 };
----------------------------------------------------------
-- Element Upgrading -------------------------------------
----------------------------------------------------------
tAttribute = {}
function AddAttribute( nNum, nProb, nDamageRate, nDefenseRate, nAddAtkDmgRate )
	tAttribute[nNum] = {}
	tAttribute[nNum].nProb = nProb
	tAttribute[nNum].nDamageRate = nDamageRate
	tAttribute[nNum].nDefenseRate = nDefenseRate
	tAttribute[nNum].nAddAtkDmgRate = nAddAtkDmgRate
end
--		Upgrade,	Probability,	Damage,			Defense,		Property compensation rate (excluding the value of refining all the values n/10000)
AddAttribute(	1,		10000,		200,			200,			500		)
AddAttribute(	2,		10000,		221,			221,			522		)
AddAttribute(	3,		10000,		256,			256,			560		)
AddAttribute(	4,		9000,		305,			305,			612		)
AddAttribute(	5,		8000,		368,			368,			680		)
AddAttribute(	6,		7000,		446,			446,			763		)
AddAttribute(	7,		6000,		537,			537,			860		)
AddAttribute(	8,		5000,		642,			642,			973		)
AddAttribute(	9,		4000,		761,			761,			1101		)
AddAttribute(	10,		3000,		895,			895,			1244		)
AddAttribute(	11,		2000,		1042,			1042,			1402		)
AddAttribute(	12,		1000,		1203,			1203,			1575		)
AddAttribute(	13,		900,		1379,			1379,			1763		)
AddAttribute(	14,		800,		1568,			1568,			1966		)
AddAttribute(	15,		700,		1772,			1772,			2184		)
AddAttribute(	16,		600,		1989,			1989,			2417		)
AddAttribute(	17,		500,		2221,			2221,			2665		)
AddAttribute(	18,		400,		2467,			2467,			2998		)
AddAttribute(	19,		300,		2726,			2726,			3207		)
AddAttribute(	20,		200,		3000,			3000,			3500		)

----------------------------------------------------------
-- Transy Probability (Do not touch!) --------------------
----------------------------------------------------------
nItemTransyLowLevel	= 500000
nItemTransyHighLevel	= 2000000
By the way, have you seen my private message?
nicksss03 is offline  
Reply


Similar Threads Similar Threads
[Buying] B>6lv element attack card 6*
02/22/2016 - Dragonica Trading - 3 Replies
Please connect me Line ID : autumn820604 Wechat : popochai Facebook : [email protected] Two attributes in one card is the best . Connect me !
VB CSS Element abfragen (Webbrowser Element)
08/12/2014 - .NET Languages - 2 Replies
Hallo und danke fürs Lesen! :) Es gibt auf einer Webseite den Code: <span class="button-text">Lesen</span> ; Ich würde gerne wissen ob 'span' das CSS Element 'display: block;' hat, da die Webseite sich durch javascript öfters ändert. Grüße, David



All times are GMT +1. The time now is 21:53.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.