• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Compiling Can't compile mystic spirit 0.2.9, help please

i inserted that file in lib/ mayby i better you paste all my log take a look please...

Code:
Compiler: Default compiler
Building Makefile: "C:\Documents and Settings\Eriko\My Documents\0.2.9.r89\dev-cpp\Makefile.win"
Executing  make...
mingw32-make -f "C:\Documents and Settings\Eriko\My Documents\0.2.9.r89\dev-cpp\Makefile.win" all
windres.exe -i TheForgottenServer_private.rc --input-format=rc -o obj/TheForgottenServer_private.res -O coff 

g++.exe obj/account.o obj/actions.o obj/admin.o obj/allocator.o obj/baseevents.o obj/beds.o obj/chat.o obj/combat.o obj/commands.o obj/condition.o obj/configmanager.o obj/connection.o obj/container.o obj/creature.o obj/creatureevent.o obj/cylinder.o obj/database.o obj/databasemysql.o obj/databasesqlite.o obj/depot.o obj/exception.o obj/fileloader.o obj/game.o obj/gui.o obj/house.o obj/housetile.o obj/inputbox.o obj/ioguild.o obj/iologindata.o obj/iomap.o obj/iomapserialize.o obj/item.o obj/items.o obj/logger.o obj/luascript.o obj/mailbox.o obj/map.o obj/md5.o obj/monster.o obj/monsters.o obj/movement.o obj/networkmessage.o obj/npc.o obj/otserv.o obj/outfit.o obj/outputmessage.o obj/party.o obj/player.o obj/playerbox.o obj/position.o obj/protocol.o obj/protocolgame.o obj/protocollogin.o obj/quests.o obj/raids.o obj/rsa.o obj/scheduler.o obj/scriptmanager.o obj/server.o obj/sha1.o obj/spawn.o obj/spells.o obj/status.o obj/talkaction.o obj/tasks.o obj/teleport.o obj/textlogger.o obj/thing.o obj/tile.o obj/tools.o obj/trashholder.o obj/vocation.o obj/waitlist.o obj/weapons.o obj/ban.o obj/protocolold.o obj/mounts.o obj/globalevent.o obj/TheForgottenServer_private.res -o "TheForgottenServer.exe" -L"lib" -mwindows -O1 -lboost_regex -lboost_system -lboost_thread -lgmp -lluasql_mysql -lluasql_sqlite -llua5.1 -lmysql -lwsock32 -lxml2 -lmysql -lws2_32 -s  

D:\Stian's Repack Dev-Cpp 0.2, 64bit\Bin/ld.exe: cannot find -lluasql_mysql
collect2: ld returned 1 exit status

mingw32-make: *** [TheForgottenServer.exe] Error 1

Execution terminated
 
didnt change anything for me, any other ideas?

In parameters I changed -lluasql_mysql to -lluasql_mysql. > nvm < and It worked, but now I have the same problem as apsivaflines up ^
 
I think it works now, but I have some other errors now:
Code:
 C:\Documents and Settings\Serwer1\Pulpit\forgottenserver-0.2.9.r89\0.2.9.r89\player.cpp In member function `bool Player::tameMount(uint8_t)': 

4815 C:\Documents and Settings\Serwer1\Pulpit\forgottenserver-0.2.9.r89\0.2.9.r89\player.cpp [Warning] converting to `int32_t' from `double'  

C:\Documents and Settings\Serwer1\Pulpit\forgottenserver-0.2.9.r89\0.2.9.r89\mounts.cpp In member function `bool Mount::isTamed(Player*) const': 

46 C:\Documents and Settings\Serwer1\Pulpit\forgottenserver-0.2.9.r89\0.2.9.r89\mounts.cpp [Warning] converting to `int32_t' from `double'

line 4815 in player.cpp
Code:
value = pow(2, mountId % 31);

line 46 in mounts.cpp
Code:
int32_t tmp = pow(2, tmpId % 31);
 
Back
Top