-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
Quote:
Originally Posted by
juandmx
The "fixed" Inventry.cpp is bugged too!!! plz fix it!
bugged?
i have no prob!
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
Quote:
Originally Posted by
pokkax
bugged?
i have no prob!
with the old? or with the "fixed"
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
Quote:
Originally Posted by
juandmx
with the old? or with the "fixed"
fixed
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
------ Build started: Project: MapleStoryServer, Configuration: Debug Win32 ------
Compiling...
Inventory.cpp
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2059: syntax error : 'else'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2447: '{' : missing function header (old-style formal list?)
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2059: syntax error : '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2059: syntax error : '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(343) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(343) : error C2447: '{' : missing function header (old-style formal list?)
Build log was saved at "file://c:\Documents and Settings\SiropMaple\שולחן העבודה\קבצים פרוצים\JunMS V5\MapleStoryServer\Debug\BuildLog.htm"
MapleStoryServer - 8 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 2 up-to-date, 0 skipped ==========
ah nvm fix it :P
ty man
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
wtf the timer are bad.
i just open it and when i try to get in the server quit -_-
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
Quote:
Originally Posted by
oshri221
------ Build started: Project: MapleStoryServer, Configuration: Debug Win32 ------
Compiling...
Inventory.cpp
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2059: syntax error : 'else'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(316) : error C2447: '{' : missing function header (old-style formal list?)
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2059: syntax error : '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(341) : error C2059: syntax error : '}'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(343) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\siropmaple\שולחן העבודה\קבצים פרוצים\junms v5\maplestoryserver\inventory.cpp(343) : error C2447: '{' : missing function header (old-style formal list?)
Build log was saved at "file://c:\Documents and Settings\SiropMaple\שולחן העבודה\קבצים פרוצים\JunMS V5\MapleStoryServer\Debug\BuildLog.htm"
MapleStoryServer - 8 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 2 up-to-date, 0 skipped ==========
ah nvm fix it :P
ty man
did u fix it?
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
yea man ,
thats was because you add 2 ( } )
in the end
i fix it to this code man and its work , but when i get in and choose player i get dc to my server
here the code :
Quote:
void Inventory::useShop(Player* player, unsigned char* packet){
char type = packet[0];
if(type == 0){
int item = getInt(packet+3);
short howmany = getShort(packet+7);
bool isequip=false;
if(Drops::equips.find(item) != Drops::equips.end())
isequip = 1;
if(isequip){
Equip* equip = setEquipStats(player, item);
addEquip(player, equip);
player->inv->setMesos(player->inv->getMesos() - Shops::getPrice(player, item));
InventoryPacket::bought(player);
}
else{
if(Drops::items.find(item) == Drops::items.end())
return;
char type = Drops::items[item].type;
Item* newitem = new Item;
newitem->amount = howmany;
newitem->id = item;
newitem->inv = type;
newitem->pos = findSlot(player, item , type, howmany);
addItem(player, newitem);
player->inv->setMesos(player->inv->getMesos() - Shops::getPrice(player, item)*howmany);
InventoryPacket::bought(player);
}
}
else if(type == 1){
short slot = getShort(packet+1);
int item = getInt(packet+3);
short amount = getShort(packet+7);
char inv = packet[9];
if(item/1000000 == 1){
for(int i=0; i<player->inv->getEquipNum(); i++){
if(player->inv->getEquip(i)->pos == slot){
InventoryPacket::moveItem(player, 1, slot, 0);
player->inv->deleteEquip(i);
break;
}
}
player->inv->setMesos(player->inv->getMesos() + Drops::equips[item].price*amount);
}
else{
takeItemSlot(player, slot, Drops::items[item].type, amount);
player->inv->setMesos(player->inv->getMesos() + Drops::items[item].price*amount);
}
InventoryPacket::bought(player);
}
-
Re: [Release]JunMS repack V5-Based on TitanMS verison 0.0.8B<Released>
Quote:
Originally Posted by
oshri221
wtf the timer are bad.
i just open it and when i try to get in the server quit -_-
Did u use auto restarter?
V5.1 source out !
Download it...it should fix most thing....
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
can i have link to v5.1 source ?
i have what u put in my maplestoryserver on your JunMS folder...
i got MapleStoryRestartv5 and i change MapleStoryServer.exe
but when i start it thats say no my sql root@password o.O
and when i try to get in in build on c++ when i choose player its give me dc and close the server.
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
did you fix the bug when i choose player ? in V5.1
and relase ling good for V5.1 ?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
can i have ling to v5.1 source ?
i have what u put in my maplestoryserver on your JunMS folder...
i got MapleStoryRestartv5 and i change MapleStoryServer.exe
but when i start it thats say no my sql root@password o.O
and when i try to get in in build on c++ when i choose player its give me dc and close the server.
well,
Did u change the loginpacket.cpp?
look for this:
Code:
packet.addByte(5); // IP
packet.addByte(196);
packet.addByte(25);
packet.addByte(172);
replace all the number in ( ) to your ip address....
This is based on 5.196.25.172
for no my sql root@password
did u set a password for your database connection?
if yes,change this:
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "X", "junms", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
NOTE: X is the password u used!
Make sure that u really changed the new maplestoryserver.exe
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
did you fix the bug when i choose player ? in V5.1
and relase ling good for V5.1 ?
It is not a bug!
if u never configure the setting....
cya tml...GMT+8 time zone...Now (11:55 PM)
Sleeping soon.....TML have school!!
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
aah, im from israel here 18:55 PM... :|
so y when i click on my MapleRestart its ask for this ? :|
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
thats what i do \ =
i duno why its not work ,
should i build again in c++ ?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
thats what i do \ =
i duno why its not work ,
should i build again in c++ ?
yes, u must click this:
http://i167.photobucket.com/albums/u123/pokkax/6.jpg
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
O.o ty its work ,
i just dont take it from "Debug" folder
i take it from relase folder :\\\\\
ty :P
Edit : yes really work :P
can i ask if you done job 4 ? , and if heal work ?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
OMG Its still bug my server and close it
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
O.o ty its work ,
i just dont take it from "Debug" folder
i take it from relase folder :\\\\\
ty :P
Edit : yes really work :P
can i ask if you done job 4 ? , and if heal work ?
all are working....
check players.cpp for more info....
!addsp is working.....
bb..i go sleep....
00:07 AM
cya
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
OMG Its still bug my server and close it
change your database...
drop your current database
recreate 1....
i will check for error in the Database.....cya....
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
no wait but Its still bug my server and close it
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
no wait but Its still bug my server and close it
what error?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
again crash when i choose player .
can you give me the table on drops on the data base ,
because i dont know what i need to change.
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
oshri221
again crash when i choose player .
can you give me the table on drops on the data base ,
because i dont know what i need to change.
Now,drop your database and use
NAVICAT My SQL
download the SQL files here:
JunMS Database SQL files.7z
it should works....
tml i will fix...take screen shot of every error and post it here,i will check it for u!
NIGHT
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
i have 2 questions..
1)are u able to post what works and what doesnt. Like scrolls,mounts, what commands, fame, What skills,FM etc..
2)Also do we have to use navicat or is querybrowser okay.
TY
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
dance.it
i have 2 questions..
1)are u able to post what works and what doesnt. Like scrolls,mounts, what commands, fame, What skills,FM etc..
2)Also do we have to use navicat or is querybrowser okay.
TY
done with your ans..check my 1st post....
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
you should add more stuff to repack and should you upgrade to 0.08c since there was some mob error thing and inventory
and btw.. did you add those skills ctz or someone posted, those 42 working skills or seomthing with hate and crap
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
soo..scrolll work on this repack..??? othr than town scroll that is...
edit: wow.its work...but 4th job npc makes me dc.nvm...nvm gj..time to replace from the old ur v2 repack scripts to this 1...
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
lol... this is 0.0.8b 0.o xD read the thread mabye....
anywayz thank you very much for telling us whats working and whats not but i stil have some question :P
Does hide work? also how about white scrolls and ME animation also anything else that u might of forgoten i need al the details of ur server :D
Thanks very much xD, this is the best repack that i have seen when 0.0.8 came up :D it helped lots
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
nosebleedXD
you should add more stuff to repack and should you upgrade to 0.08c since there was some mob error thing and inventory
and btw.. did you add those skills ctz or someone posted, those 42 working skills or seomthing with hate and crap
Since i used TitanMS Version 0.0.8B that mean that all skill code must restart and start from 0
ctz skills is not suitable for TitanMS Verison 0.0.8 onward
i fix the mob and inventory error b4 0.0.8c release....and i kinda lazy to change....need *time*!
well.koolk just change 2 file..u can replace them and find which suppose to be in those 2 file and add in
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
kimisan_87
soo..scrolll work on this repack..??? othr than town scroll that is...
ya....Scroll for equipment is working...
town scroll suppose to be working....haven test yet!
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
When i load up Auto Restarterv5, it goes all the way to MySQL then says
Quote:
Initializing MySQL... Unknown database 'junms'FAILED
any idea?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
KingdomVolc
When i load up Auto Restarterv5, it goes all the way to MySQL then says
any idea?
READ MY FIRST POST:
In MySQLM.cpp
Replace:
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "junms", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
to
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "maplestory", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
dance.it
lol... this is 0.0.8b 0.o xD read the thread mabye....
anywayz thank you very much for telling us whats working and whats not but i stil have some question :P
Does hide work? also how about white scrolls and ME animation also anything else that u might of forgoten i need al the details of ur server :D
Thanks very much xD, this is the best repack that i have seen when 0.0.8 came up :D it helped lots
kk...actually u should try it yourself since i dont have much time to test every thing....!
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
pokkax
READ MY FIRST POST:
In MySQLM.cpp
Replace:
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "junms", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
to
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "maplestory", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
Lol i did replace it i still get the error, i'll look to see if anything else in ur server shows junms, not sure though, but yea i did replace that in your first step. Maybe its something i didn't do, like maybe copy all files from release that need to be in maplestoryserver.
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
haha ok my bad pokkax, thanks anyways ima use your repack, and let's see if krytical released v9
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
pokkax
READ MY FIRST POST:
In MySQLM.cpp
Replace:
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "junms", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
to
Code:
int MySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db, "localhost", "root", "", "maplestory", 3306, NULL, 0)){
printf(mysql_error(&maple_db));
return 0;
}
return 1;
}
Its my Auto Restarter lol, i think i didn't copy MapleStory Server.exe at that time i rebuilt solution.
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
KingdomVolc
Lol i did replace it i still get the error, i'll look to see if anything else in ur server shows junms, not sure though, but yea i did replace that in your first step. Maybe its something i didn't do, like maybe copy all files from release that need to be in maplestoryserver.
did u rebuild your solution?
and
replace the maplestoryserver.exe in DEBUG folder into Maplestoryserver folder?
read previous post for it!
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
KingdomVolc
Its my Auto Restarter lol, i think i didn't copy MapleStory Server.exe at that time i rebuilt solution.
is after rebuilding it!
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
k ill test out the stuff just redownloading files again i screwed the other ones >.> i tryed adding v.0.0.7 files in it.. anywayz when i dl the iles on media fire it says JunMSv5.7 xD
is it reali v5.7???
also ty very much i hope it goes all good and keeep up the updates :P
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
pokkax
did u rebuild your solution?
and
replace the maplestoryserver.exe in DEBUG folder into Maplestoryserver folder?
read previous post for it!
oops not debug thanks and my bad for not looking at previous post.
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
dance.it
k ill test out the stuff just redownloading files again i screwed the other ones >.> i tryed adding v.0.0.7 files in it.. anywayz when i dl the iles on media fire it says JunMSv5.7 xD
is it reali v5.7???
also ty very much i hope it goes all good and keeep up the updates :P
er...
i will ans your question~
i upload JunMSv5 but it is V5.1 never update the name only
and JunMSV5.7z
7z is a format....a compression formatXD
google it and u will find why i use that instead or rar....
(COMPRESS RATIO is much HIGHER)
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
I get an error when picking up items from ground and getitng items from store.
Suggetions?
-
Re: [Re-Release]JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
Love
I get an error when picking up items from ground and getitng items from store.
Suggetions?
http://forum.ragezone.com/f427/relea...-007-a-383243/
DOWNLOAD THIS REPACK AND TRY.....
Note:quitting -
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
what verison is this for idk wat rev 008 means TT_TT
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Why always my own create d MS dun have FreeMarket one~
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
stop bumping dead threads
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
prohand
Why always my own create d MS dun have FreeMarket one~
Will u use the search button and stop bumping dead threads?
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
prohand
Why always my own create d MS dun have FreeMarket one~
Counting.. 3rd thread bumped..
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Seriously he should just be banned
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
-
Re: [Release] JunMS repack V5.1-Based on TitanMS verison 0.0.8B
Quote:
Originally Posted by
Hubba
is this for .55?
Nice job for bumping a thread that has already been bumped once