Jump to content

Reboot

Banned
  • Posts

    529
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

Everything posted by Reboot

  1. Removed by me. How can i build it? Can you help me, please? I have a error: [Hidden Content] Read above posts ,and you will find the solution.
  2. We source from windows serverfiles fully functional, tested 100 players. And go perfectly. I do not think anything ever going to post on the dev. Here is [Hidden Content]
  3. FOR syron This is correct : Lenght.h = 999990000000ULL tables.h = unsigned long long gold; In PythonPlayerModule.cpp you have ( ULL = Unsigned long long) In PythonPlayerModule.cpp : Change this : PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return Py_BuildValue("i", CPythonPlayer::Instance().GetStatus(POINT_GOLD)); } With this PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return Py_BuildValue("ULL", CPythonPlayer::Instance().GetStatus(POINT_GOLD)); } I don't know what's so hard.
  4. What ? It's easy, open .sln and click build solution What you say ? I don't understand.
  5. When will you do and what they did when you say that. When I know a quarter of what they know. Each has his way of programming, one I did not allow me to say they are low.
  6. You're right, I indeed changed the uiscript, but the thing is I couldn't decompile the uiscript from test client. Eternexus always stoped working. Use extraction helper by mr crack
  7. Change uiscript, with this: Problem is from uiscript.
  8. Update. Added: Libthecore.a , libsql.a , libpoy.a , libgame.a Libserverkey.a you can delete that folder
  9. From my point of view it is unnecessary to do core to sell. Since, however, is free. Not to mention that appear each month free troubleshooting.
  10. Contact tim for 2089M source, Maybe he has.
  11. Create xml file with [Hidden Content] All the files i extract using the xml file i create are 0Kb... Anyone know what im doing wrong? Or can someone show me exactly how to use this? You have a video on page 2, at this topic.
  12. Line 488 is the last line of the spoiler below. uitarget.py Add ttabs on line 488
  13. Download vss2013, why you guys use 2008? 2008 is old, unsafe, and buggy
  14. You are stupid. Very stupid. Download freebsd with source. usr/src/mainline_released/server/game/src
  15. Add in quest_functions add_bgm_info
  16. M2 Download Center Download Here ( Internal ) Hi friends, today I'll show you how to create your own makefile , Makefile libgame.a BIN = ../libgame.a CXX = g++ CFLAGS = -Wall -O2 -pipe -mtune=i686 OBJFILES = grid.o attribute.o targa.o ###################################################################### default: @echo 'Compiling grid.cc'; $(CXX) $(CFLAGS) -c grid.cc @echo 'Compiling attribute.cc'; $(CXX) $(CFLAGS) -c attribute.cc @echo 'Compiling targa.cc'; $(CXX) $(CFLAGS) -c targa.cc @echo 'Create library'; ar cru $(BIN) $(OBJFILES) @echo 'Compiling static'; ranlib $(BIN) @echo 'Delete .obj files'; rm -f *.o Makefile libpoly.a BIN = ../libpoly.a CXX = g++ CFLAGS = -Wall -O2 -pipe -mtune=i686 -fno-exceptions -fno-rtti ######################################################################################################## OBJFILES = Base.o Poly.o Symbol.o SymTable.o default: @echo 'Compiling Base' ; $(CXX) $(CFLAGS) -c Base.cc @echo 'Compiling Poly' ; $(CXX) $(CFLAGS) -c Poly.cc @echo 'Compiling Symbol' ; $(CXX) $(CFLAGS) -c Symbol.cc @echo 'Compiling SymTable' ; $(CXX) $(CFLAGS) -c SymTable.cc @echo 'Create library static'; ar cru $(BIN) $(OBJFILES) @echo 'Compiling'; ranlib $(BIN) @echo 'Delete .obj files'; rm -f *.o Makefile libsql.a BIN = ../libsql.a CXX = g++ CFLAGS = -Wall -O2 -pipe -mtune=i686 -D_THREAD_SAFE -fno-exceptions ######################################################################################################## OBJFILES = AsyncSQL.o Semaphore.o Tellwait.o Statement.o INCDIR = -I/src_reboot_def/extern/mysql_5.6.22 default: @echo 'Compiling AsyncSQL'; $(CXX) $(INCDIR) $(CFLAGS) -c AsyncSQL.cpp @echo 'Compiling Semaphore'; $(CXX) $(INCDIR) $(CFLAGS) -c Semaphore.cpp @echo 'Compiling Tellwait'; $(CXX) $(INCDIR) $(CFLAGS) -c Tellwait.cpp @echo 'Compiling Statement'; $(CXX) $(INCDIR) $(CFLAGS) -c Statement.cpp @echo 'Create library static'; ar cru $(BIN) $(OBJFILES) @echo 'Compiling'; ranlib $(BIN) @echo 'Delete .obj files'; rm -f *.o Makefile libthecore.a BIN = ../libthecore.a CXX = g++ CFLAGS = -Wall -O2 -pipe -mtune=i686 -g ######################################################################################################## OBJFILES = socket.o fdwatch.o buffer.o signal.o log.o utils.o kstbl.o hangul.o heart.o main.o tea.o des.o gost.o memcpy.o default: @echo 'Compiling socket' ; $(CXX) $(CFLAGS) -c socket.c @echo 'Compiling fdwatch'; $(CXX) $(CFLAGS) -c fdwatch.c @echo 'Compiling buffer' ; $(CXX) $(CFLAGS) -c buffer.c @echo 'Compiling signal' ; $(CXX) $(CFLAGS) -c signal.c @echo 'Compiling log' ; $(CXX) $(CFLAGS) -c log.c @echo 'Compiling utils' ; $(CXX) $(CFLAGS) -c utils.c @echo 'Compiling kstbl' ; $(CXX) $(CFLAGS) -c kstbl.c @echo 'Compiling hangul' ; $(CXX) $(CFLAGS) -c hangul.c @echo 'Compiling heart' ; $(CXX) $(CFLAGS) -c heart.c @echo 'Compiling main' ; $(CXX) $(CFLAGS) -c main.c @echo 'Compiling tea' ; $(CXX) $(CFLAGS) -c tea.c @echo 'Compiling des' ; $(CXX) $(CFLAGS) -c des.c @echo 'Compiling gost' ; $(CXX) $(CFLAGS) -c gost.c @echo 'Compiling memcpy' ; $(CXX) $(CFLAGS) -c memcpy.c @echo 'Create library static'; ar cru $(BIN) $(OBJFILES) @echo 'Compiling'; ranlib $(BIN) @echo 'Delete .obj files'; rm -f *.o I can not understand why do some makefile so YMIR compilcate. I forgot to tell you, .o files have removed. File depend removed. @echo 'Compiling grid.cc' Instead of compiling grid ask what message you want If you have errors, leave reply. If you want to make simple makefile, organized, easy to modify. And for the rest of the library. (Libsql, libthecore etc.)
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.