Old v15 source + Source addons

Re: FlyFF v15 Source Code + Source Edits

aries you know how to fix the trans.
when you transed to monster you can attack npc and pets you know how to fix that?
 
Re: FlyFF v15 Source Code + Source Edits

Can I use to compile this sources visual studio 2008/2010 express or any other compilator(except vc2003).
 
Re: FlyFF v15 Source Code + Source Edits

Not only this: the Express Edition are missing lots of header files only included in the proffesional versions.
 
Re: FlyFF v15 Source Code + Source Edits

I tried to compile it in Visual Studio 2010 Ultimate and shows there are a lot of missing header source(like Cstring.h etc), when I downloaded this headers compiler show syntax errors in this headers. It seems this sources are compileable only with vc 2003 but where can I get it. ;//
 
Re: FlyFF v15 Source Code + Source Edits

Help..

I Become this error when i Compil Neuz:

Neuz error LNK2019: unresolved external symbol "public: __thiscall CWndMailRequestingBox::CWndMailRequestingBox(void)" (??0CWndMailRequestingBox@@QAE@XZ) referenced in function "public: virtual void __thiscall CWndPost::OnInitialUpdate(void)" (?OnInitialUpdate@CWndPost@@UAEXXZ)

Can you Help me?

and i have what for all:

seach: p2DRender->TextOut( point.x + 50 + n, point.y - 18, szText, COLOR_PLAYER );

then add:

if( g_pPlayer->IsAuthHigher( AUTH_ADMINISTRATOR ) )
{
p2DRender->TextOut( point.x + 50 + n, point.y - 18, szText, COLOR_ADMIN );
}

then again seach: COLOR_PLAYER
you find: #define COLOR_PLAYER 0xffffffff

add this: #define COLOR_ADMIN 0xe10000ff

Now if you InGame then is our name (Admin!) red

Credits: Crasy, GiftZahn

Help me for the Neuz Error pls (:
 
Re: FlyFF v15 Source Code + Source Edits

Help..

I Become this error when i Compil Neuz:



Can you Help me?

and i have what for all:



Help me for the Neuz Error pls (:

if you become an error you should really think why you are still living lol :D

sorry, I couldn't resist.
 
Re: FlyFF v15 Source Code + Source Edits

Please Help me .

I have got this error :

2010/10/31 17:39:17 GetMoverProp range_error min:0, max:1907, index:6553611

2010/10/31 17:39:17 CMover::InitProp - GetProp(6553611) return NULL


2010/10/31 17:39:17 SerializeOpt:573.119995

2010/10/31 17:39:17 GetMoverProp range_error min:0, max:1907, index:6553611

2010/10/31 17:39:20 Oct 31 2010 16:06:17 1 rCnt=1

Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 001B:006ECE4F


How fix it ?
 
Re: FlyFF v15 Source Code + Source Edits

Quote:
seach: p2DRender->TextOut( point.x + 50 + n, point.y - 18, szText, COLOR_PLAYER );

then add:

if( g_pPlayer->IsAuthHigher( AUTH_ADMINISTRATOR ) )
{
p2DRender->TextOut( point.x + 50 + n, point.y - 18, szText, COLOR_ADMIN );
}

then again seach: COLOR_PLAYER
you find: #define COLOR_PLAYER 0xffffffff

add this: #define COLOR_ADMIN 0xe10000ff

Now if you InGame then is our name (Admin!) red

Credits: Crasy, GiftZahn

In which file i must edit that?
 
Re: FlyFF v15 Source Code + Source Edits

@Giftzahn

Are u sure?
I tried to give the GMs an unique color at this way but it didn't work, i could change every other color , Monsters, NPCs, whatever, but not the Playercolor, cuz the playercolor gots defined in the PKSettings.inc in the Client >_<
 
Re: FlyFF v15 Source Code + Source Edits

@Giftzahn

Are u sure?
I tried to give the GMs an unique color at this way but it didn't work, i could change every other color , Monsters, NPCs, whatever, but not the Playercolor, cuz the playercolor gots defined in the PKSettings.inc in the Client >_<

Try it and complain afterwards
 
Re: FlyFF v15 Source Code + Source Edits

I just wanted to know wheather it's working for him or not.
I don't know maybe it could work if he has deactivated pk or something else^^.
 
Re: FlyFF v15 Source Code + Source Edits

Today I want to explane how to start Neuz.exe without sunkist, onley a dubble-klick on it. :D
First go into your Neuz Folder.
Open Neuz71.sln.
After this search for "sunkist".
Now delete sunkist onley the word in the too "".
Example:
Before : if( strcmpi( szArg1, "sunkist" ) )
After: if( strcmpi( szArg1, "" ) )
Compline it.
Dubble-klick on it and it will run.
Hope I helped you.
Knot
 
Re: FlyFF v15 Source Code + Source Edits

Today I want to explane how to start Neuz.exe without sunkist, onley a dubble-klick on it. :D
First go into your Neuz Folder.
Open Neuz71.sln.
After this search for "sunkist".
Now delete sunkist onley the word in the too "".
Example:
Before : if( strcmpi( szArg1, "sunkist" ) )
After: if( strcmpi( szArg1, "" ) )
Compline it.
Dubble-klick on it and it will run.
Hope I helped you.
Knot

Guys just open NeuzMsgProc.cpp and search for if( strcmpi( szArg1, "sunkist" ) and edit the uncommented one :P

No need to open neuz71.sln.
 
Last edited:
Back