Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server > Flyff PServer Guides & Releases
You last visited: Today at 07:27

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

Advertisement



[Re-Release] Jobselect by charcreate

Discussion on [Re-Release] Jobselect by charcreate within the Flyff PServer Guides & Releases forum part of the Flyff Private Server category.

Reply
 
Old 06/29/2015, 16:16   #16
 
elite*gold: 23
Join Date: Dec 2010
Posts: 743
Received Thanks: 617
Quote:
Originally Posted by raventh1984 View Post
check your APP_CREATE_CHAR its not correct.
He used the v15 APP_CREATE_CHAR for the v17 resData.inc
I added the APP_CREATE_CHAR for v17 resData on the first site.
.SnoX is offline  
Thanks
1 User
Old 06/29/2015, 16:34   #17
 
elite*gold: 0
Join Date: Oct 2012
Posts: 948
Received Thanks: 157
Do we need to spoon feed? In that case no one is learning how to.

Dont get me wrong i find it good that you do this. But if they dont use common sence then how will they expect to maintain or upgrade the Server.

I know i have asked an lot of questions to but i am now at an state that i understand how it all works. And how to solve that kind of issues. Just by trying and see what it does.
raventh1984 is offline  
Thanks
1 User
Old 06/29/2015, 18:12   #18
 
Supr3matt's Avatar
 
elite*gold: 80
Join Date: May 2013
Posts: 146
Received Thanks: 23
My problem is the next ...
Pressing the button to create character NEUZ crash ...

WndTitle.cpp

Quote:
m_Player.m_byJob = JOB_MERCENARY;
CWndButton* nJobMerc = (CWndButton*)GetDlgItem( WIDC_BUTTON9 );
CWndButton* nJobAcro = (CWndButton*)GetDlgItem( WIDC_BUTTON6 );
CWndButton* nJobAssist = (CWndButton*)GetDlgItem( WIDC_BUTTON7 );
CWndButton* nJobMage = (CWndButton*)GetDlgItem( WIDC_BUTTON8 );
Resdata.inc

Quote:
WTYPE_BUTTON WIDC_BUTTON6 "ButtCharAcr.tga" 0 24 27 66 79 0x2220000 0 0 0 0 46 112 169
{
// Title String
""
}
{
// ToolTip
""
}
WTYPE_BUTTON WIDC_BUTTON7 "ButtCharAss.tga" 0 82 27 124 79 0x2220000 0 0 0 0 46 112 169
{
// Title String
""
}
{
// ToolTip
""
}
WTYPE_BUTTON WIDC_BUTTON8 "ButtCharMag.tga" 0 141 27 183 79 0x2220000 0 0 0 0 46 112 169
{
// Title String
""
}
{
// ToolTip
""
}
WTYPE_BUTTON WIDC_BUTTON9 "ButtCharMerc.tga" 0 201 28 242 80 0x2220000 0 0 0 0 46 112 169
{
// Title String
""
}
{
// ToolTip
""
}
Supr3matt is offline  
Old 06/29/2015, 18:17   #19
 
elite*gold: 0
Join Date: Oct 2012
Posts: 948
Received Thanks: 157
Without error codes we cant do an thing.
raventh1984 is offline  
Thanks
1 User
Old 06/29/2015, 18:33   #20
 
Supr3matt's Avatar
 
elite*gold: 80
Join Date: May 2013
Posts: 146
Received Thanks: 23
My problem... SORRY

Quote:
2015/ 6/29 13:32:33 Jun 29 2015 13:28:12 1 rCnt=1

Neuz2.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz2.exe at 0023:0051E7B0, CWndComboBox::GetCurSel , c:\users\matias\desktop\update_virtuos_27.05\sourc e\_interface\wndcontrol.cpp, line 5957

- Registers

EAX=00000000 EBX=126B1B18 ECX=00000000 EDX=00000000 ESI=00000000
EDI=0000003A EBP=0000000F ESP=0018FAA4 EIP=0051E7B0 FLG=00210202
CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B

0023:0051E7B0 Neuz2.exe, CWndComboBox::GetCurSel
0023:0053B233 Neuz2.exe, CWndCreateChar::OnChildNotify()+0291 byte(s)
0023:75661333 USER32.dll, ScreenToClient()+0163 byte(s)
Supr3matt is offline  
Old 06/29/2015, 19:56   #21


 
- Major's Avatar
 
elite*gold: 7
Join Date: Sep 2012
Posts: 4,462
Received Thanks: 3,213
0023:0051E7B0 Neuz2.exe, CWndComboBox::GetCurSel
0023:0053B233 Neuz2.exe, CWndCreateChar::OnChildNotify()+0291 byte(s)

There was your problem .. Check your Resdatas !
- Major is offline  
Old 06/29/2015, 23:50   #22
 
elite*gold: 0
Join Date: Apr 2013
Posts: 511
Received Thanks: 431
Quote:
Originally Posted by .ACE. View Post
0023:0051E7B0 Neuz2.exe, CWndComboBox::GetCurSel
0023:0053B233 Neuz2.exe, CWndCreateChar::OnChildNotify()+0291 byte(s)

There was your problem .. Check your Resdatas !
Wenn du mir erklärst was GetCurSel mit Resdata zutun hat?
Wanetrain is offline  
Old 06/30/2015, 00:22   #23
 
Mognakor's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 598
Received Thanks: 465
Quote:
Originally Posted by Wanetrain View Post
Wenn du mir erklärst was GetCurSel mit Resdata zutun hat?
Code:
CWndComboBox* pWndJobBox = ( CWndComboBox* )GetDlgItem( WIDC_COMBOBOX1 );
                assert( pWndJobBox );

                if( pWndJobBox->GetCurSel() <= 0 )
                {
                    g_WndMng.OpenMessageBox( "Uuups try aggain." );
                    return TRUE;
                }
Da ist zwar ein assert aber das legt nur fest dass das Element in der ResData existiert nicht dass es auch tatsächlich eine ComboBox ist, also ist es möglich dass in der ResData ein Fehler steckt.
Mognakor is offline  
Thanks
2 Users
Old 07/01/2015, 11:59   #24
 
aoyamananami's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 243
Received Thanks: 11
i already did this.. after making a new character then select the mercenary job after clicking ok button, in my select character the job is Magician -_- ..
aoyamananami is offline  
Old 07/13/2015, 06:27   #25
 
elite*gold: 0
Join Date: Jul 2011
Posts: 75
Received Thanks: 15
v19 resdata for this please, and button images
kun_sama13 is offline  
Old 07/13/2015, 08:42   #26
 
elite*gold: 0
Join Date: Jul 2011
Posts: 75
Received Thanks: 15
okay thanks
kun_sama13 is offline  
Reply


Similar Threads Similar Threads
[TUT] Cash/Gold (Charcreate)
04/06/2013 - 4Story - 16 Replies
EDIT: Aus Performance und Kosmetikgründen, habe ich die Funktion nocheinmal leicht angepasst. Des Weiteren habe ich euch einfach mal die ganze Funktion kopiert. PS: unten ist auch die erste Nachricht enthalten, die man erhält, wenn man mit dem ersten Character ins Spiel geht. Diese könnt ihr wieder anpassen, ich habe einfach nur nochmal den Spielernamen hinzugefügt, um dich Leute persönlich anzusprechen ;) An dieser Stelle müsste jetzt eigentlich ein Name auftauchen, der bereits eine...
[Source/Resource Release] Mehr Haare/Gesichter + bei CharCreate
01/10/2012 - Flyff PServer Guides & Releases - 12 Replies
Hi Leute, mir kam grad die Idee euch zu zeigen wie man neue Gesichter oder auch neue Haare einfügt :) Öffnet die defineNeuz.h Nicht nur in den Resourcen der Files/des Clients! Sondern auch im Source :)



All times are GMT +2. The time now is 07:27.


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.