Jump to content

Reboot

Banned
  • Posts

    529
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

Posts posted by Reboot

  1. 25hhabl.jpg

     

    Android is very different from other operating systems like Windows or other various Linux distros out there. What I'm trying to say is that in order to get Android on your device, if nobody already did it, you may need to download the Android AOSP source code and compile it for yourself. (see http://source.android.com/) Not to mention that you'll have a hard time trying to fix all the device driver-related bugs that may (and will) occur. If you are lucky enough to actually get the drivers from the hardware manufacturers.

     

    Long story short, if you're not a developer and you cannot find any custom ROM for your phone on sites like XDA-Developers, you're stuck with what you have.

    Hm, thanks. I downloaded the studio manager android official site, I want to make my own custom android.

    • Love 3
  2. Hi, does anyone know where I can download the original android 4.4 kitkat? not be reached by any telephone company, because they change and are no longer good for anything.
     
    Not necessarily kitkat 4.4, even 4.3 Beam Jellly just be original and not be touched by any telephone company.
    • Love 3
  3. Hey guys ^-^

     

    I wanted to compile the novaline

    Everything is up on my root but when I want to compile somethin I become some errors

     

    !I haven't changed anything. I only wanted to look if it works!

     

    Errors:

     

    Command: 

    cd /usr/src/novaline/Server/
    gmake
     
    Error:
    Makefile:47: warning: overriding recipe for target 'libserverkey'
    Makefile:13: warning: ignoring old recipe for target 'libserverkey'
    gmake -C libthecore/src dep
    gmake[1]: Entering directory '/usr/src/novaline/Server/libthecore/src'
    g++ -Wall -O2 -pipe -mcpu=i686 -g -I../include -MM *.c > Depend
    g++: not found
    Makefile:33: recipe for target 'dep' failed
    gmake[1]: *** [dep] Error 127
    gmake[1]: Leaving directory '/usr/src/novaline/Server/libthecore/src'
    Makefile:41: recipe for target 'libthecore' failed
    gmake: *** [libthecore] Error 2
     

    Command:

    cd /usr/src/novaline/Server/db/src
    gmake clean
    gmake -j20
     
    Error:
    root@p2:/usr/src/novaline/Server/db/src # gmake clean
    svn: not found
    svn: not found
    root@p2:/usr/src/novaline/Server/db/src # gmake -j20
    svn: not found
    svn: not found
    gmake: *** No rule to make target '/usr/include/c++/4.2/vector', needed by '.obj/Config.o'.  Stop.
     
    Command:
    cd /usr/src/novaline/Server/game/src
    gmake clean
    gmake -j20
     
    Error:
    gmake: *** No rule to make target '/usr/include/c++/4.2/cstdlib', needed by 'OBJDIR/BattleArena.o'.  Stop.
     

    Somebody could help me?

    You need freebsd 9.2 or 9.3 not work on 9.3+

     

    If you want to compile on FreeBSD 9.3 +, you must copy the FreeBSD 9.3 in / usr / include folder c ++.
     
    In FreeBSD 9.3+
     
     
     
    Follow the steps
    pkg install gmake
    pkg install boost-all
    pkg install subversion
    pkg install gcc49
    pkg install makedepend
    
    1) Open a virtual image FreeBSD 9.2.
    2) Create an archive folder / usr / include / c ++
    3) upload archive c ++ in the same directory as in FreeBSD 9.2.
    
    Install the above programs.
    
    Upload source folder, try to compile.
    
  4. up, any can give me your config.cpp? or the code of GetIPInfo(), my GetIPInfo() is incomplete :C

    bool GetIPInfo()
    {
    #ifndef __WIN32__
    	struct ifaddrs* ifaddrp = NULL;
    
    	if (0 != getifaddrs(&ifaddrp))
    		return false;
    
    	for( struct ifaddrs* ifap=ifaddrp ; NULL != ifap ; ifap = ifap->ifa_next )
    	{
    		struct sockaddr_in * sai = (struct sockaddr_in *) ifap->ifa_addr;
    
    		if (!ifap->ifa_netmask ||  // ignore if no netmask
    				sai->sin_addr.s_addr == 0 || // ignore if address is 0.0.0.0
    				sai->sin_addr.s_addr == 16777343) // ignore if address is 127.0.0.1
    			continue;
    #else
    	WSADATA wsa_data;
    	char host_name[100];
    	HOSTENT* host_ent;
    	int n = 0;
    
    	if (WSAStartup(0x0101, &wsa_data)) {
    		return false;
    	}
    
    	gethostname(host_name, sizeof(host_name));
    	host_ent = gethostbyname(host_name);
    	if (host_ent == NULL) {
    		return false;
    	}
    	for ( ; host_ent->h_addr_list[n] != NULL; ++n) {
    		struct sockaddr_in addr;
    		struct sockaddr_in* sai = &addr;
    		memcpy(&sai->sin_addr.s_addr, host_ent->h_addr_list[n], host_ent->h_length);
    #endif
    
    		char * netip = inet_ntoa(sai->sin_addr);
    
    		if (!strncmp(netip, "192.168", 7)) // ignore if address is starting with 192
    		{
    			strlcpy(g_szInternalIP, netip, sizeof(g_szInternalIP));
    #ifndef __WIN32__
    			fprintf(stderr, "INTERNAL_IP: %s interface %sn", netip, ifap->ifa_name);
    #else
    			fprintf(stderr, "INTERNAL_IP: %sn", netip);
    #endif
    		}
    		else if (!strncmp(netip, "10.", 3))
    		{
    			strlcpy(g_szInternalIP, netip, sizeof(g_szInternalIP));
    #ifndef __WIN32__
    			fprintf(stderr, "INTERNAL_IP: %s interface %sn", netip, ifap->ifa_name);
    #else
    			fprintf(stderr, "INTERNAL_IP: %sn", netip);
    #endif
    		}
    		else if (g_szPublicIP[0] == '0')
    		{
    			strlcpy(g_szPublicIP, netip, sizeof(g_szPublicIP));
    #ifndef __WIN32__
    			fprintf(stderr, "PUBLIC_IP: %s interface %sn", netip, ifap->ifa_name);
    #else
    			fprintf(stderr, "PUBLIC_IP: %sn", netip);
    #endif
    		}
    	}
    
    #ifndef __WIN32__
    	freeifaddrs( ifaddrp );
    #else
    	WSACleanup();
    #endif
    
    	if (g_szPublicIP[0] != '0')
    		return true;
    	else
    		return false;
    }
    
  5.  

    post syserr

    if emty then look at the python part maybe it does not work

    1006 09:56:07142 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/etc/buff/buff_item1.mse) Error
    1006 09:56:07142 :: CInstanceBase::RegisterEffect(eEftType=269, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/etc/buff/buff_item1.mse, isCache=1) - Error
    1006 09:56:07145 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/etc/buff/buff_item3.mse) Error
    1006 09:56:07145 :: CInstanceBase::RegisterEffect(eEftType=271, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/etc/buff/buff_item3.mse, isCache=1) - Error
    1006 09:56:07637 :: invalid idx 0
    1006 09:56:13544 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010).  Automatic conversion will be attempted.
    

    WTF, so talk to a very simple problem to solve.
     
    The error comes from a pack which is added to the index.
     
    Specifically patch2: D
     
    So add patch2 the client index.
    • Love 1
  6. pkg install boost-all

    devel/boost-all     The "meta-port" for boost libraries

    devel/boost-docs         Documentation for libraries from boost.org

    devel/boost-jam          Build tool from the boost.org

    devel/boost-libs         Free portable C++ libraries (without Boost.Python)

    devel/boost-pyste        Boost.Python code generator

    devel/boost-python-libs         Framework for interfacing Python and C++

    devel/boost_build

     

     

    converters/iconv Charset conversion library and utilities

    converters/iconv-extra Additional charsets for the iconv library (those from the Unicode site)

    converters/iconv-rfc1345 Additional charset modules for the iconv library (from RFC1345)

    converters/libiconv A character set conversion library

    (there are others

    • Love 2
  7. What? Find hundreds of serverfiles Google.

     

    It is not our problem that you find on google? What do you mean you want to give you a serverfiles not without bugs. You just put on dedicated and give the roads?
     
    This is a forum for help, if you have a problem we help.
    Nobody gives serverfiles without bugs as you want so.
     
    Work alone and do something nice, do not come to beg.
    Like I said google is serverfilesuri envelope.
×
×
  • 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.