• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[ TUTORIAL ] How to Migrate your source to VS2013

Newbie Spellweaver
Joined
May 8, 2014
Messages
63
Reaction score
2
I don't think I will.
lets said, someone already bought it with high price and ask for me to not share it.

that is so sad, but thanks again. your tutorial is a big stepping stone for newbies in coding. :thumbup:
 
Skilled Illusionist
Joined
Mar 17, 2018
Messages
323
Reaction score
30
any thought? C:\Program Files (x86)\Windows Kits\8.1\Include\um\d2d1helper.h(715): error C2039: 'g' : is not a member of 'D2D1::ColorF'
 
Skilled Illusionist
Joined
Mar 17, 2018
Messages
323
Reaction score
30
Thanks for this tutorial,

To all newbie like me, upon observing the game for almost 3 days, like roaming on Map , rechecking game features, some error will occur, like hang, and other exception error, but you can handle those error by modifying the affected code.
 
Chinese Developer
Banned
Joined
Apr 6, 2019
Messages
358
Reaction score
53
following the guide that @TS provide , i meet bugtrap error...
Rebel92 - [ TUTORIAL ] How to Migrate your source to VS2013 - RaGEZONE Forums



hope can get somebody help..
 
Junior Spellweaver
Joined
Nov 18, 2017
Messages
125
Reaction score
64
following the guide that @TS provide , i meet bugtrap error...
Rebel92 - [ TUTORIAL ] How to Migrate your source to VS2013 - RaGEZONE Forums



hope can get somebody help..
check your resource.h and client -- bugtrap.rc on client -- bugtrap project,
compare it to the orig bugtrap.
 
Chinese Developer
Banned
Joined
Apr 6, 2019
Messages
358
Reaction score
53
yeah , @TS is keep helping us for solving problem that meet on source upgrade process.
 
Junior Spellweaver
Joined
Nov 18, 2017
Messages
125
Reaction score
64
How to Fix Source ABL Error BugTrap

i will only explain it,
this bugtrap caused by the item EffChar, there is a EffCharMultiTex, EffCharNeon, EffCharLevel etc,
take example on the EffCharTexDiff,
theres data saved using std::string on it,

on VISUAL STUDIO theres thing named STL(Standard Template Library),vs2003 STL is different with vs2010 UP,
this make the std::string unreadable,

to fix this,
you have to change that item std::string to char;

now, on how to change it,
using rantool converter,

on vs 2003 source, modifiy the saving part, from std::string to char,
extract all of your cps-aps-vps file from skinobject.rcc,
convert all of it,
in this step, your vs 2003 rantool cant read it anymore,

now, on your new VS source,
modifiy the load part, change from std::string to char,
now EffCharTexDiff is fix.
 
Newbie Spellweaver
Joined
Feb 24, 2015
Messages
57
Reaction score
7
i will only explain it,
this bugtrap caused by the item EffChar, there is a EffCharMultiTex, EffCharNeon, EffCharLevel etc,
take example on the EffCharTexDiff,
theres data saved using std::string on it,

on VISUAL STUDIO theres thing named STL(Standard Template Library),vs2003 STL is different with vs2010 UP,
this make the std::string unreadable,

to fix this,
you have to change that item std::string to char;

now, on how to change it,
using rantool converter,

on vs 2003 source, modifiy the saving part, from std::string to char,
extract all of your cps-aps-vps file from skinobject.rcc,
convert all of it,
in this step, your vs 2003 rantool cant read it anymore,

now, on your new VS source,
modifiy the load part, change from std::string to char,
now EffCharTexDiff is fix.
Thank you
 
Experienced Elementalist
Joined
Aug 19, 2011
Messages
219
Reaction score
17
How about this error sir ? im on Building Lib -- Engine and i got 10k error
Rebel92 - [ TUTORIAL ] How to Migrate your source to VS2013 - RaGEZONE Forums




Problem solved by sir Rebel92

Thank you so much with all my respect
 
Last edited:
Junior Spellweaver
Joined
Nov 18, 2017
Messages
125
Reaction score
64
How about this error sir ? im on Building Lib -- Engine and i got 10k error
Rebel92 - [ TUTORIAL ] How to Migrate your source to VS2013 - RaGEZONE Forums


nerver got this before,
send me your teamviewer id



How about this error sir ? im on Building Lib -- Engine and i got 10k error
Rebel92 - [ TUTORIAL ] How to Migrate your source to VS2013 - RaGEZONE Forums


nerver got this before,
send me your teamviewer id
 
Experienced Elementalist
Joined
Aug 19, 2011
Messages
219
Reaction score
17
nerver got this before,
send me your teamviewer id




nerver got this before,
send me your teamviewer id

wait sir ill pm you my teamviewer ID



nerver got this before,
send me your teamviewer id




nerver got this before,
send me your teamviewer id

wait sir ill pm you my teamviewer ID



nerver got this before,
send me your teamviewer id




nerver got this before,
send me your teamviewer id

1 384 370 608
4bb7u6



nerver got this before,
send me your teamviewer id




nerver got this before,
send me your teamviewer id

1 384 370 608
4bb7u6
 
Newbie Spellweaver
Joined
Apr 11, 2020
Messages
30
Reaction score
0
Can I get some help? I am having error while building Client -- BugTrap. I just did what is in your tutorial.

error C2220: warning treated as error - no 'object' file generated EnumProcess.cpp Line 82
warning C4996: 'GetVersionExA': was declared deprecated EnumProcess.cpp Line 82
error C2220: warning treated as error - no 'object' file generated SymEngine.cpp Line 1177
warning C4996: 'GetVersionExA': was declared deprecated SymEngine.cpp Line 1177
IntelliSense: cannot open source file "StdAfx.h"

 
Last edited:
Banned
Banned
Joined
Nov 6, 2020
Messages
113
Reaction score
21
It is very great tutorials for beginners. Thx a lot. :thumbup:
 
Back
Top