Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 05:44

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

Advertisement



Need a hint about __LOOKCHANGE

Discussion on Need a hint about __LOOKCHANGE within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Need a hint about __LOOKCHANGE

Hi epvp.

I just added __LOOKCHANGE system , compile without error.
But when i entered the game i dont see any of the my gear even when im trying to put in off and put it on again . Nothing.
The "Item Transmutation System" Window (APP) kind of working.

Video:


So all im asking is a hint or if you want to help me with this it will be much appriciated.
It happens because of a database issue? something missing? or something is
wrong with the code?

BTW: Dont have any errorlog , not in the client , And not in the server files.
Thanks!!
And im not sure if this is necessary, but my ODBC is running on Native Client 10.00.
LookAtTheFlower is offline  
Old 09/21/2019, 20:13   #2
 
elite*gold: 0
Join Date: Jun 2012
Posts: 9
Received Thanks: 0
Look into your database, you need to update your items in the basevalue_tbl. For that sell your starter Equipment and buy them again, equip them and look in the inventory_tbl the new parameters and copy them in the basevalue_tbl to the same coloumn.

Don't forget to paste them in the right line, because there are two, for male and female characters.
Sonraiku is offline  
Old 09/22/2019, 10:55   #3
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Quote:
Originally Posted by Sonraiku View Post
Look into your database, you need to update your items in the basevalue_tbl. For that sell your starter Equipment and buy them again, equip them and look in the inventory_tbl the new parameters and copy them in the basevalue_tbl to the same coloumn.

Don't forget to paste them in the right line, because there are two, for male and female characters.
I need to do that to every single player who shows up in the tbl_inventory?
LookAtTheFlower is offline  
Old 09/22/2019, 11:14   #4


 
- Major's Avatar
 
elite*gold: 7
Join Date: Sep 2012
Posts: 4,462
Received Thanks: 3,213
Quote:
Originally Posted by LookAtTheFlower View Post
I need to do that to every single player who shows up in the tbl_inventory?
Every new database part need a update for all existing items.
- Major is offline  
Old 09/22/2019, 11:17   #5
 
elite*gold: 0
Join Date: Aug 2010
Posts: 67
Received Thanks: 42
Normally you can just execute this sql query:
Code:
BEGIN TRAN

USE [CHARACTER_01_DBF]

UPDATE [BASE_VALUE_TBL] SET [m_Inventory] = '0,502,0,0,,1,0,9000000,0,0,0,0,0,0,0,0,0,-1/1,2801,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,4805,0,0,,5,0,0,0,0,0,0,0,0,0,0,0,-1/42,506,0,0,,1,0,5850000,0,0,0,0,0,0,0,0,0,-1/43,510,0,0,,1,0,4500000,0,0,0,0,0,0,0,0,0,-1/44,21,0,0,,1,0,7200000,0,0,0,0,0,0,0,0,0,-1/45,2800,0,0,,3,0,0,0,0,0,0,0,0,0,0,0,-1/$' WHERE g_nSex = '0'
UPDATE [BASE_VALUE_TBL] SET [m_Inventory] = '0,504,0,0,,1,0,9000000,0,0,0,0,0,0,0,0,0,-1/1,2801,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,4805,0,0,,5,0,0,0,0,0,0,0,0,0,0,0,-1/42,508,0,0,,1,0,5850000,0,0,0,0,0,0,0,0,0,-1/43,512,0,0,,1,0,4500000,0,0,0,0,0,0,0,0,0,-1/44,21,0,0,,1,0,7200000,0,0,0,0,0,0,0,0,0,-1/45,2800,0,0,,3,0,0,0,0,0,0,0,0,0,0,0,-1/$' WHERE g_nSex = '1'

ROLLBACK
Edit:
doesnt work with 168 slot inv
every old item wont have a look -> you need to update them
Knusper02 is offline  
Old 09/22/2019, 11:58   #6
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Quote:
Originally Posted by - DK ACE View Post
Every new database part need a update for all existing items.
Just to make sure I understand, I need to take the parameters from Inventory_TBL and copy them to base_value_tbl according to male and female?



Quote:
Originally Posted by Knusper02 View Post
Normally you can just execute this sql query:
Code:
BEGIN TRAN

USE [CHARACTER_01_DBF]

UPDATE [BASE_VALUE_TBL] SET [m_Inventory] = '0,502,0,0,,1,0,9000000,0,0,0,0,0,0,0,0,0,-1/1,2801,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,4805,0,0,,5,0,0,0,0,0,0,0,0,0,0,0,-1/42,506,0,0,,1,0,5850000,0,0,0,0,0,0,0,0,0,-1/43,510,0,0,,1,0,4500000,0,0,0,0,0,0,0,0,0,-1/44,21,0,0,,1,0,7200000,0,0,0,0,0,0,0,0,0,-1/45,2800,0,0,,3,0,0,0,0,0,0,0,0,0,0,0,-1/$' WHERE g_nSex = '0'
UPDATE [BASE_VALUE_TBL] SET [m_Inventory] = '0,504,0,0,,1,0,9000000,0,0,0,0,0,0,0,0,0,-1/1,2801,0,0,,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,4805,0,0,,5,0,0,0,0,0,0,0,0,0,0,0,-1/42,508,0,0,,1,0,5850000,0,0,0,0,0,0,0,0,0,-1/43,512,0,0,,1,0,4500000,0,0,0,0,0,0,0,0,0,-1/44,21,0,0,,1,0,7200000,0,0,0,0,0,0,0,0,0,-1/45,2800,0,0,,3,0,0,0,0,0,0,0,0,0,0,0,-1/$' WHERE g_nSex = '1'

ROLLBACK
Edit:
doesnt work with 168 slot inv
every old item wont have a look -> you need to update them
With those parameters? or parameters form Inventory_TBL?
LookAtTheFlower is offline  
Old 09/23/2019, 17:08   #7
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Quote:
Originally Posted by LookAtTheFlower View Post
Just to make sure I understand, I need to take the parameters from Inventory_TBL and copy them to base_value_tbl according to male and female?

With those parameters? or parameters form Inventory_TBL?

*BUMP*
Still need help...
I tried to execute the with the parameters i have in inventory_tbl from each character..
Nothing work.
LookAtTheFlower is offline  
Old 09/23/2019, 17:56   #8
 
elite*gold: 0
Join Date: Jun 2012
Posts: 9
Received Thanks: 0
When the Query isn't working for you, then you have to do it by yourself.

1.Create a new character male/female
2.Sell your Equipment and rebuy the same parts/weapons
3. Equip them and log out
4. Go to your database and open Inventory_tbl
5. copy&paste m_apIndex to the same coloumn in the base_value_tbl
6. Do the same with the opposite gender, take care of what line you pasting the parameters.
Sonraiku is offline  
Old 09/23/2019, 23:37   #9
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Quote:
Originally Posted by Sonraiku View Post
When the Query isn't working for you, then you have to do it by yourself.

1.Create a new character male/female
2.Sell your Equipment and rebuy the same parts/weapons
3. Equip them and log out
4. Go to your database and open Inventory_tbl
5. copy&paste m_apIndex to the same coloumn in the base_value_tbl
6. Do the same with the opposite gender, take care of what line you pasting the parameters.
Hi , i did it but it still the same.
LookAtTheFlower is offline  
Old 09/24/2019, 06:43   #10
 
elite*gold: 0
Join Date: Jun 2012
Posts: 9
Received Thanks: 0
Try with both m_apIndex and m_dwObjIndex.
Sonraiku is offline  
Old 09/24/2019, 15:16   #11
 
elite*gold: 0
Join Date: Jul 2018
Posts: 224
Received Thanks: 46
Quote:
Originally Posted by Sonraiku View Post
Try with both m_apIndex and m_dwObjIndex.
Not working..
LookAtTheFlower is offline  
Reply


Similar Threads Similar Threads
__LOOKCHANGE causes crash
06/27/2019 - Flyff Private Server - 8 Replies
It's me again, I need some help here again.. I was adding __LOOKCHANGE and it was successful in the source. I have managed to add it correctly and carefully but when neuz is opened it will crash but if I remove the AddMenu(MMI_LOOKCHANGE); in the character.inc the neuz will load successfully. Is there any thoughts? What could be wrong? Can you guys send me your entry from resdata.inc so I can compare mine? My ResData.inc entry APP_LOOKCHANGE "WndTile00.tga" "" 1 288 256 0x2410000 26 { //...
[HINT] Transformers Universe - Quick Attack Rate Skill Hack Hint
11/23/2014 - Facebook - 28 Replies
This is just a hint on how to do this hack, I am not giving out how to do the hack in full detail, It took me 8 hours before I had this working properly among several other hacks I managed to make up to that point. So I've saved you 8 hours or probably more than that of looking around, Let's see how strong your Metal is :D And for those that figure it out, Give them hell, The playerbase says they've never seen game hackers before July 27th, let's show them all how we do things. :) Attack...
is there anyone can give a hint can do a DH on CRPH?just only a hint.thanks alot
09/08/2011 - Cabal Online - 0 Replies
for those who can give me a hint,thanks to you bro^^
NEED A HINT BOUT INVI.. ??
09/14/2008 - RF Online - 5 Replies
:bandit:first of all im not a leecher.. i ve most of the hacks ive figure it out on my on with a bit hint from the masters here.. i keep on browing on how to use InVI still i cant figure it out i need a hint pls? what should i do compare like elems? is ther anyone who can give me a hint.. or do i need a better program? IF YOU GUYS NEED A HINT ON ATTCK SPD, FLY, LEVEL, NAME, ETC.. just post them here.. im only giving hints and getting hints... you just have to use your brains..
Need Hint To Be Rich...
06/24/2006 - Conquer Online 2 - 5 Replies
I NEed A Hint to be rich...if someone have some hint help me lol.,..



All times are GMT +2. The time now is 05:44.


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.