Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home/iano/public_html/tpforums-vb5/forum/includes/class_core.php on line 5842

PHP Warning: Use of undefined constant MYSQL_NUM - assumed 'MYSQL_NUM' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_BOTH - assumed 'MYSQL_BOTH' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 588

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 612

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6
Tibia Graphics DLL! - Page 2
Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: Tibia Graphics DLL!

  1. #11
    Senior Member
    Join Date
    Jun 2007
    Posts
    247

    Tibia Graphics DLL!

    Hey, this will be awesome when its done. I dont know open gl or directx, but i guess you are planning to sync it using the "flip" function where the buffer with the new image replaces the old image. Im not even sure if that function exists lol, thats just what the old calculators i used to program called it. Anyway, if you do that shouldnt you theoretically be able to instead of using opengl/directx draw routines just use tibias. That would, to me anyway, seem alot more useful especially if you added functionality additional functionality to hook some of tibias draw routines, like the draw menus and draw text. Anyway, anything of this sort would be great.

    Im also going to add a snippet of code which launches tibia from within its working directory ie it solves the problem of copying the tibia.dat ect files. It uses the windows api, i dont know what ur using but maybe it will be useful, its just that it took me a while to figure out so you may as well be spared it .
    Code:
    //look up these two structures as they contain some useful info like PiD and a handle to the new process if you want it. If u do want it, set handle inheritance to true.
        STARTUPINFO si;
        PROCESS_INFORMATION pi;
    
        ZeroMemory( &si, sizeof(si) );
        si.cb = sizeof(si);
        ZeroMemory( &pi, sizeof(pi) );
    
        // Start the child process.
        if(CreateProcess( NULL,   // No module name (use command line)
            (char *)com,//"\"C:\\Program Files\\Tibia\\Tibia.exe\"",        // Command line
            NULL,           // Process handle not inheritable
            NULL,           // Thread handle not inheritable
            FALSE,          // Set handle inheritance to FALSE
            0,              // No creation flags
            NULL,           // Use parent's environment block
            (char *)dir,//"C:\\Program Files\\Tibia",           // Use parent's starting directory
            &si,            // Pointer to STARTUPINFO structure
            &pi )           // Pointer to PROCESS_INFORMATION structure
        )

  2. #12

  3. #13
    Junior Member
    Join Date
    Jun 2008
    Posts
    5

    RE: Tibia Graphics DLL!

    where is the download?

  4. #14
    Senior Member
    Join Date
    May 2009
    Posts
    107

    RE: Tibia Graphics DLL!

    Can someone reupload ?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •