Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Released Teleport System by Mentus

Newbie Spellweaver
Joined
Mar 27, 2017
Messages
23
Reaction score
0
I have "v15 cuvvvies" I do all this and the server don't give me problem. But when i enter to the game don't appears nothing when i push "V Buttom", anyone can help me?
 
Junior Spellweaver
Joined
Nov 21, 2015
Messages
180
Reaction score
21
When you compile the source after the edits you receive no errors? I believe cuvvvies source required the define's in both resource and source/resource, something was clearly forgotten if you did everything correct but no errors or crash logs are being generated also unless you've upgraded the scanner tokens for the resdata you will be running OLD resdata or what ever you wanna call it.
 
Newbie Spellweaver
Joined
Mar 27, 2017
Messages
23
Reaction score
0
When you compile the source after the edits you receive no errors? I believe cuvvvies source required the define's in both resource and source/resource, something was clearly forgotten if you did everything correct but no errors or crash logs are being generated also unless you've upgraded the scanner tokens for the resdata you will be running OLD resdata or what ever you wanna call it.

@n0tso1ee7

i have a doubt when i going to compile, which resource folder i have to compile?Because "cuvvvies v15" have two one on "SCR" and other where is all the files.
 
Junior Spellweaver
Joined
Nov 21, 2015
Messages
180
Reaction score
21
you re build the all.sln in side the source folder, just make sure the definefiles inside the source/resource match the resource ones.
 
Newbie Spellweaver
Joined
Mar 27, 2017
Messages
23
Reaction score
0
@n0tso1ee7

I understand this:

1st: I need to copy from my Server/resoucerthe "define files"

8JqFXpR - Released Teleport System by Mentus - RaGEZONE Forums


the define files are these?

7cz2Oqa - Released Teleport System by Mentus - RaGEZONE Forums


and if they are those, i must to copy them on source/resource folder. I understood correctly?

wlkZrN7 - Released Teleport System by Mentus - RaGEZONE Forums




@n0tso1ee7

I found how to compile flyff!But i can not download visual studio 2003 for my windows 7 32bits OS.With what program i can compile? visual studio 2015?
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Mar 27, 2017
Messages
23
Reaction score
0
The teleporter system work well! But when I use teleport to someplace, the server disconnect me. help me ?

JhXj22u - Released Teleport System by Mentus - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Nov 14, 2017
Messages
13
Reaction score
0
How can you change the name of the map inside the teleporter and add a description in the bottom right ? Thank you
 
Custom Title Activated
Loyal Member
Joined
Mar 26, 2012
Messages
1,465
Reaction score
130
I cannot download from this stupid site. It keeps giving me malware warnings instead of downloading. How am I supposed to get this file? Thank you.



Nevermind. This will not work with the version I have anyhow. Thanks
 
Newbie Spellweaver
Joined
Sep 8, 2011
Messages
67
Reaction score
252
I cannot download from this stupid site. It keeps giving me malware warnings instead of downloading. How am I supposed to get this file? Thank you.



Nevermind. This will not work with the version I have anyhow. Thanks
You can always make your own images for the system with screenshots of parts of game. Also, you can alter resdata to be your version.

 
Initiate Mage
Joined
Jul 24, 2016
Messages
2
Reaction score
0


Please help, i done everything but still get this error.
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830


Please help, i done everything but still get this error.

Screenshot #1

This goes at the bottom of DpClient.cpp not the top!
Code:
#ifdef __APP_TELEPORTER
void CDPClient::SendTeleport( int nCurSel )
{
    BEFORESENDSOLE( ar, PACKETTYPE_APP_TELEPORT, DPID_UNKNOWN );
    ar << nCurSel;
    SEND( ar, this, DPID_SERVERPLAYER );
}
#endif

----------------------------------------------------------------------------------------------------------------------------------

Screenshot #2

Change:
Code:
#ifdef __APP_TELEPORTER
    ON_MSG( PACKETTYPE_APP_TELEPORT, OnTeleportByAPP );
#endif // __APP_TELEPORTER

To:
Code:
#ifdef __APP_TELEPORTER
    ON_MSG( PACKETTYPE_APP_TELEPORT, &CDPSrvr::OnTeleportByAPP );
#endif // __APP_TELEPORTER
 
Junior Spellweaver
Joined
Jul 13, 2013
Messages
139
Reaction score
1
Screenshot #1

This goes at the bottom of DpClient.cpp not the top!
Code:
#ifdef __APP_TELEPORTER
void CDPClient::SendTeleport( int nCurSel )
{
    BEFORESENDSOLE( ar, PACKETTYPE_APP_TELEPORT, DPID_UNKNOWN );
    ar << nCurSel;
    SEND( ar, this, DPID_SERVERPLAYER );
}
#endif

----------------------------------------------------------------------------------------------------------------------------------

Screenshot #2

Change:
Code:
#ifdef __APP_TELEPORTER
    ON_MSG( PACKETTYPE_APP_TELEPORT, OnTeleportByAPP );
#endif // __APP_TELEPORTER

To:
Code:
#ifdef __APP_TELEPORTER
    ON_MSG( PACKETTYPE_APP_TELEPORT, &CDPSrvr::OnTeleportByAPP );
#endif // __APP_TELEPORTER

hi,sir,can use this teleport code in your released v18?
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Make sure that:
Code:
#ifdef __APP_TELEPORTER
    void    SendTeleport( int nCurSel );
#endif

Has been added to DPClient.h
 
Newbie Spellweaver
Joined
Sep 28, 2014
Messages
17
Reaction score
0
I got a neuz error after doing everything

 
Back
Top