|
You last visited: Today at 22:02
Advertisement
how can i define this
Discussion on how can i define this within the Flyff Private Server forum part of the Flyff category.
11/10/2016, 01:10
|
#1
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
how can i define this
i have this error any help guys?
|
|
|
11/10/2016, 01:37
|
#2
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by AK Escobar
Try to deactivate your Anti virus, maybe it helps.
|
i dont use anti virus .. or anything
|
|
|
11/10/2016, 02:28
|
#3
|
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
|
Quote:
Originally Posted by killer21killer
i dont use anti virus .. or anything
|
in defineneuz.h rather in your resource folder
define
#define MMI_MARKETJOIN 9999
#define MMI_MARKETEXIT 99999
|
|
|
11/10/2016, 07:51
|
#4
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by khemomo
in defineneuz.h rather in your resource folder
define
#define MMI_MARKETJOIN 9999
#define MMI_MARKETEXIT 99999
|
thanks fix it
i got new problem .. i added this code to character.inc to an npc .. but nothing appears
AddMenu( MMI_MARKET_TRADE "Market Place" );
|
|
|
11/10/2016, 13:39
|
#5
|
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
|
Quote:
Originally Posted by killer21killer
thanks fix it
i got new problem .. i added this code to character.inc to an npc .. but nothing appears
AddMenu( MMI_MARKET_TRADE "Market Place" );
|
Check the TID_xxxxxxx
|
|
|
11/10/2016, 14:38
|
#6
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by khemomo
Check the TID_xxxxxxx
|
i checked it ..
i added this..
#define TID_MMI_MARKETEXIT 9999
#define TID_MMI_MARKETJOIN_TEXT01 9998
#define TID_MMI_MARKET_TRADE 9997
now my worldserver is crashing .. do i need to recompile it?
|
|
|
11/10/2016, 23:48
|
#7
|
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
|
Quote:
Originally Posted by killer21killer
i checked it ..
i added this..
#define TID_MMI_MARKETEXIT 9999
#define TID_MMI_MARKETJOIN_TEXT01 9998
#define TID_MMI_MARKET_TRADE 9997
now my worldserver is crashing .. do i need to recompile it?
|
dont take it literally about the entry 9999 make it just 250+ or make sure that there is no the same entry.
|
|
|
11/11/2016, 11:08
|
#8
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by khemomo
dont take it literally about the entry 9999 make it just 250+ or make sure that there is no the same entry.
|
hahaha ok ok .. i change it still dont have the menu... in my npc..
|
|
|
11/12/2016, 09:04
|
#9
|
elite*gold: 0
Join Date: Jul 2015
Posts: 170
Received Thanks: 10
|
Quote:
Originally Posted by killer21killer
hahaha ok ok .. i change it still dont have the menu... in my npc..
|
AddMenu2( MMI_MARKET_TRADE "Market Place" );
try this!
|
|
|
11/13/2016, 00:59
|
#10
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
you forgot a comma after MMI, but do you have this "feature" in your source to use that method in your character.inc?
|
|
|
11/13/2016, 02:05
|
#11
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by Lumi
you forgot a comma after MMI, but do you have this "feature" in your source to use that method in your character.inc?
|
which part did i forgot to put the MMI with a comman...?
i got that in my source
Code:
#define __MARKET_V19
#define __CONSIGNMENT
#define __CONSIGNMENT_CURRENCY
#define __CONSIGNMENT_TAXES
maybe i missed something in my source any help?
|
|
|
11/13/2016, 05:04
|
#12
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
Can you find AddMenu2 in Project.cpp? If yes, then your Menu should looks like this:
AddMenu2( MMI_MARKETJOIN, "Market Place" );
|
|
|
11/13/2016, 07:21
|
#13
|
elite*gold: 0
Join Date: Oct 2012
Posts: 129
Received Thanks: 1
|
Quote:
Originally Posted by Lumi
Can you find AddMenu2 in Project.cpp? If yes, then your Menu should looks like this:
AddMenu2( MMI_MARKETJOIN, "Market Place" );
|
Code:
#ifdef __TEXT_MENU
else
if(script.Token == "AddMenu2" )
{
script.GetToken(); // (
int nMMI = script.GetNumber();
script.GetToken(); //text name
CString menutext = script.Token;
script.GetToken(); // )
still nothing in my npc .. do i need to recompile my neuz and my worldserver?
|
|
|
11/13/2016, 15:34
|
#14
|
elite*gold: 0
Join Date: Mar 2008
Posts: 333
Received Thanks: 284
|
Remove the comma
|
|
|
11/13/2016, 15:50
|
#15
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
Quote:
Originally Posted by killer21killer
Code:
#ifdef __TEXT_MENU
else
if(script.Token == "AddMenu2" )
{
script.GetToken(); // (
int nMMI = script.GetNumber();
script.GetToken(); //text name
CString menutext = script.Token;
script.GetToken(); // )
still nothing in my npc .. do i need to recompile my neuz and my worldserver?
|
Have you increase +1 on Max_Mover_Menu? Did you define your Menu in your source and in your resource?
|
|
|
 |
|
Similar Threads
|
manual define
04/24/2014 - Seafight - 0 Replies
Hi,
kann bitte jemand erklaeren wie man das macht?
Danke schon mal
LG
|
define items
03/04/2012 - Flyff Private Server - 5 Replies
Hallo epvp ne frage was ist bei define item
für Soul + 20 und 125er sets?
|
Looking for some help on define eud star
09/21/2010 - EO PServer Hosting - 11 Replies
hey all..can some one show where did i can define my eudemon star in cq_eudemon_rbn_rqr ?
example for reborn rate..
on my server eudemon below 100* eudemon will require 30* per compose(this is normal on cq_eudemon_rbn_rqr sacrifice_starlev)
so what im not understand here.. where the point for 100*?
coz i make the new line on it that will require 40* eudemon for compose..but my 100* eudemon change the require star to 40* and not 30* anymore..where should i define this? its really make...
|
Define Skills
08/17/2009 - CO2 Private Server - 6 Replies
SkillAttributes = new ushort { 2, 0, 0, 505, 0, 0 };
what do each numbers represent
ive never really messed with skills beofre and it would be great if someone could help me out on this
|
[Tutorial] Define your chams
10/27/2008 - WarRock - 4 Replies
Credits to LilCrazed
Sorry if it has been posted i searched and didn't find it
In d3d8dev.cpp
under the includes put
#define Player (m_Stride == 44)
#define Walls (m_Stride == blah)
#define Flags (NumVertices == blah)
|
All times are GMT +1. The time now is 22:03.
|
|