Bitefight Clone

Page 3 of 6 FirstFirst 123456 LastLast
Results 31 to 45 of 76
  1. #31
    Proficient Member sercankd is offline
    MemberRank
    Sep 2005 Join Date
    localhostLocation
    193Posts

    Re: Bitefight Clone

    im working on security issues almost fixed all changed mysql codes with using secure mysql class
    if anybody interested. here
    PHP Code:
    <?php
      
    if ( !defined "__INC_MY_SQL" ) )
    {
      
    define "__INC_MY_SQL");
      
    /**
     * This class handles connections to a mysql database.
     * The class is constructed to make it easy for someone to handle a mysql database
     * 
     * @author Staffan Olin
     * @version 0.2
     * @since 0.7.0
     */
    class MySQL {

        
    /**
        * The connection resource id
        *
        * @var  object
        */
        
    var $connection;

        
    /**
        * The selected database
        *
        * @var  object
        */
        
    var $selectedDb;

        
    /**
        * The result from a select-query
        *
        * @var  object
        */
        
    var $result;

        
    /**
        * Flag that tells if you are connected to the database or not
        *
        * @var  boolean
        */
        
    var $isConnected;

        
    /**
        * Flag that tells if you the tables are locked or not
        *
        * @var  boolean
        */
        
    var $isLocked;
        
        
    /**
         *This will indicate what querytype the last query was
         *
         * @var    string
         */
        
    var $queryType;

        
    /**
         * This is the constructor of this mysql class.
         * It creates a connection to the database, and if possible it sets the database to
         * You can specify if you want to use persistant connections or not.
         *
         * @param     string    The host to the mySQL server
         * @param    string    The username you use to log on to the mySQL server
         * @param    string    The password you use to log on to the mySQL server
         * @param    string    The name of the database you wish to use
         * @param    boolean    TRUE if you want to use persistant connections. Default is TRUE
         * @return    boolean TRUE when connection was successfull
         * @access    public
         */    
        
    function MySQL($sHost$sUser$sPassword$sDatabase=""$bPersistant=TRUE) {
            
    $conFunc "";

            if(!
    defined("DEBUG")) {
                
    define("DEBUG"FALSE);
            }
            
            if(
    $this->getConnected()) {
                
    $this->closeConnection();
            }
            if(
    $this->connection = ($bPersistant mysql_pconnect($sHost$sUser$sPassword) : mysql_connect($sHost$sUser$sPassword))) {
                
    $this->setConnected(TRUE);

                if(
    $sDatabase) {
                    
    $this->setDb($sDatabase);
                
                }
                
                return 
    TRUE;
            } else {
                
    $this->setConnected(FALSE);
                return 
    FALSE;
            }
        }
        
        
    /**
         * This is the destructor of this class. It frees the result of a query,
         * it unlocks all locked tables and close the connection to the database
         * It does not return anything at all, so you will not know if it was sauccessfull
         *
         * @access    public
         */
        
    function _MySQL() {
            if(
    $this->result) {
                
    $this->freeResult();
            }
            if(
    $this->getLocked()) {
                
    $this->unlock();
            }
            if(
    $this->getConnected()) {
                
    $this->closeConnection();
            }
        }
        
        
    /**
         * This function frees the result from a query if there is any result.
         *
         * @access    public
         */
        
    function freeResult() {
            if(
    $this->result) {
                @
    mysql_free_result($this->result);
            }
        }
        
        
    /**
         * This function executes a query to the database.
         * The function does not return the result of the query, you must call the
         * function getQueryResult() to fetch the result
         *
         * @param     string    The query-string to execute
         * @return    boolean    TRUE if the query was successfull
         * @access    public
         */
        
    function query($query) {
            if(
    strlen(trim($query)) == 0) {
                
    $this->printError("No query got in function query()");
                return 
    FALSE;
            }
            if(!
    $this->getConnected()) {
                
    $this->printError("Not connected in function query()");
                return 
    FALSE;
            }
            
            
    $queryType substr(trim($query), 0strpos($query" "));
            
    $this->setQueryType($queryType);
            
            
    $this->result mysql_query($query$this->connection);
            if(
    $this->result) {
                return 
    TRUE;
            }
            return 
    FALSE;
        }
        
        
    /**
         * Sets the querytype of the last query executed
         * For example it can be SELECT, UPDATE, DELETE etc.
         *
         * @access    private
         */
        
    function setQueryType($type) {
            
    $this->queryType strtoupper($type);
        }
        
        
    /**
         * Returns the querytype
         *
         * @return    string
         * @access    private
         */
        
    function getQueryType() {
            return 
    $this->queryType;
        }
        
        
    /**
         * This function returns number of rows got when executing a query
         *
         * @return    mixed    FALSE if there is no query-result.
         *                    If the queryType is SELECT then it will use the function MYSQL_NUM_ROWS
         *                    Otherwise it uses the MYSQL_AFFECTED_ROWS
         * @access    public
         */
        
    function getNumRows() {
            if(
    $this->result) {
                if(
    DEBUG==TRUE) {
                    print(
    "<font style=\"background-color: red\">".$this->getQueryType()."</font><br>");
                }
                return 
    mysql_affected_rows($this->connection);
            }
            return 
    FALSE;
        }
        
        
    /**
         * The function returns the result from a call to the query() function
         *
         * @return    object
         * @access    public
         */
        
    function getQueryResult() {
            return 
    $this->result;
        }
        
        
    /**
         * This function returns the query result as an array for each row in the query result
         *
         * @return    array
         * @access    public
         */
        
    function fetchArray() {
            if(
    $this->result) {
                return 
    mysql_fetch_array($this->result);
            }
            return 
    FALSE;
        }
        
        
    /**
         * This function returns the query result as an object for each row in the query result
         *
         * @return    object
         * @access    public
         */
        
    function fetchObject() {
            if(
    $this->result) {
                return 
    mysql_fetch_object($this->result);
            }
            return 
    FALSE;
        }
        
        
    /**
         * This function returns the query result as an array for each row in the query result
         *
         * @return    array
         * @access    public
         */
        
    function fetchRow() {
            if(
    $this->result) {
                return 
    mysql_fetch_row($this->result);
            }
            return 
    FALSE;
        }
        
        
    /**
         * This function sets the database
         *
         * @return    boolean    TRUE if the database was set
         * @access    public
         */
        
    function setDb($sDatabase) {
            if(!
    $this->getConnected()) {
                
    $this->printError("Not connected in function setDb()");
                return 
    FALSE;
            }
            if(
    $this->selectedDb mysql_select_db($sDatabase$this->connection)) {
                return 
    TRUE;
            }
            return 
    FALSE;
        }
        
        
    /**
         * This function returns a flag so you can see if you are connected to the database
         * or not
         *
         * @return    boolean    TRUE when connected to the database
         * @access    public
         */
        
    function getConnected() {
            return 
    $this->isConnected;
        }

        
    /**
         * This function sets the flag so you can see if you are connected to the database
         *
         * @param    $bStatus    The status of the connection. TRUE if you are connected,
         *                        FALSE if you are not
         * @access    public
         */
        
    function setConnected($bStatus) {
            
    $this->isConnected $bStatus;
        }
        
        
    /**
         * The function unlocks tables if there are locked tables and the closes the
         * connection to the database.
         *
         * @access    public
         */
        
    function closeConnection() {
            if(
    $this->getLocked()) {
                
    $this->unlock();
            }
            
            if(
    $this->getConnected()) {
                
    mysql_close($this->connection);
                
    $this->setConnected(FALSE);
            }
        }
        
        
    /**
         * Unlocks all tables that are locked
         *
         * @access    public
         */
        
    function unlock() {
            if(!
    $this->getConnected()) {
                
    $this->setLocked(FALSE);
            }            
            if(
    $this->getLocked()) {
                
    $this->query("UNLOCK TABLES"); 
                
    $this->setLocked(FALSE);
            }
        }

        
    /**
         * This function locks the table(s) that you specify
         * The type of lock must be specified at the end of the string.
         *
         * @param    string    a string containing the table(s) to lock, 
         *                    as well as the type of lock to use (READ or WRITE) 
         *                    at the end of the string
         * @return    boolean TRUE if the tables was successfully locked
         * @access    private
         */
        
    function lock($sCommand) {
            if(
    $this->query("LOCK TABLE ".$sCommand)) {
                
    $this->setLocked(TRUE);
                return 
    TRUE;
            }
            
            
    $this->setLocked(FALSE);
            return 
    FALSE;
        }
        
        
    /**
         * This functions sets read lock to specified table(s)
         *
         * @param    string    a string containing the table(s) to read-lock
         * @return    boolean    TRUE on success
         */
        
    function setReadLock($sTable) {
            return 
    $this->lock($sTable." ".LOCKED_FOR_READ);
        }
        
        
    /**
         * This functions sets write lock to specified table(s)
         *
         * @param    string    a string containing the table(s) to read-lock
         * @return    boolean TRUE on success
         */
        
    function setWriteLock($sTable) {
            return 
    $this->lock($sTable." ".LOCKED_FOR_WRITE);
        }
            
        
    /**
         * Sets the flag that indicates if there is any tables locked
         *
         * @param    boolean    The flag that will indicate the lock. TRUE if locked
         */
        
    function setLocked($bStatus) {
            
    $this->isLocked $bStatus;
        }
        
        
    /**
         * Returns TRUE if there is any locked tables
         *
         * @return    boolean TRUE if there are locked tables
         */
        
    function getLocked() {
            return 
    $this->isLocked;
        }

        
    /**
         * Prints an error to the screen. Can be used to kill the application
         *
         * @param    string    The text to display
         * @param    boolean    TRUE if you want to kill the application. Default is FALSE
         */
        
    function printError($text$killApp=FALSE) {
            if(
    $text) {
                print(
    "<b>Error</b><br />".$text);
            }
            if(
    $killApp) {
                exit();
            }
        }
        
        
    /**
         * Display any mysql-error
         *
         * @return    mixed    String with the error if there is any error.
         *                    Otherwise it returns FALSE
         */
        
    function getMysqlError() {
            if(
    mysql_error()) {
                return 
    "<br /><b>Mysql Error Number ".mysql_errno()."</b><br />".mysql_error();
            }
            return 
    FALSE;
        }
    }


        
    // Local constants

    /**
     * TRUE if you want to be in debug-mode
     * FALSE if not
     */
    define("DEBUG"FALSE);

    /**
     * DO NOT CHANGE THESES VARIABLES
     */

    /**
     * Command to set the table lock for READ
     */
    define("LOCKED_FOR_READ""READ");
    /**
     * Command to set the table lock for WRITE
     */
    define("LOCKED_FOR_WRITE""WRITE");


    // endif __INC_MY_SQL
    ?>

  2. #32
    Enthusiast vesichaa is offline
    MemberRank
    Dec 2008 Join Date
    41Posts

    big grin Re: Bitefight Clone

    fretelo Sega sh moesh li go opravish ??? :) kato go kachiha na nowo ;P

  3. #33
    Proficient Member sercankd is offline
    MemberRank
    Sep 2005 Join Date
    localhostLocation
    193Posts

    Re: Bitefight Clone

    talk english or use private messaging do not ruin my topic please.

  4. #34
    Novice casanovamxm is offline
    MemberRank
    Jan 2009 Join Date
    4Posts

    Re: Bitefight Clone

    Quote Originally Posted by darkxl View Post
    Very good sercankd, good files =D

    PS: If any wants test the server: www.darkxl.com/bite

    Edit: translating into spanish :P...
    Translated:
    Code:
    index.php                                                        100%
    Added redcloud img                                               100%
    reg.php                                                          100%
    Added "T&Cs", "Data protection statement", "Contact" and "Rules" 100%
    logo vamp and lycan                                              100%
    game.css                                                         100%
    index_m.php                                                      100%
    index_z.php                                                      100%
    F.A.Q                                                            100%
    Added news F.A.Q (oficial game)                                  100%
    Fix F.A.Q Scrool (no menu)                                       100%
    Login.php                                                        100%
    tpl/footer.php                                                   100%
    tpl/top.php                                                      100%
    shoppremium.php (oficial part)                                   100%
    z_main                                                           100%
    bad url (no fix, only url)                                       100%
    Added table start_draw                                           100%
    z_msg.php                                                        100%
    z_msgnew.php                                                     100%
    z_msg_show.php                                                   100%
    Note: working send msg
    Note2: No work deleted msg
    any screen:



    Good Luck!
    DOWNLOAD LINK PLEASE!!!

    Por favor soy argentino y quiero tu bitefight plz :D

  5. #35
    Apprentice akademik is offline
    MemberRank
    Mar 2009 Join Date
    23Posts

    Re: Bitefight Clone

    SVN developer bitefight?

  6. #36
    Proficient Member sercankd is offline
    MemberRank
    Sep 2005 Join Date
    localhostLocation
    193Posts

    Re: Bitefight Clone

    what do you mean?

  7. #37
    Apprentice .EresboSS. is offline
    MemberRank
    Apr 2010 Join Date
    11Posts

    Re: Bitefight Clone

    good work sercan this is working

    Demo: www.bitefightemre.isgreat.org

  8. #38
    Apprentice akademik is offline
    MemberRank
    Mar 2009 Join Date
    23Posts

    Re: Bitefight Clone

    Quote Originally Posted by blackadder3110 View Post
    I guess this project died?
    project died

  9. #39
    Apprentice hireblade is offline
    MemberRank
    Mar 2010 Join Date
    7Posts

    Re: Bitefight Clone

    The files that i've downloaded don't work :/

  10. #40
    Enthusiast Forst is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    Re: Bitefight Clone

    pls englis verzion this release

  11. #41
    Apprentice ET1996 is offline
    MemberRank
    Jan 2009 Join Date
    11Posts

    Re: Bitefight Clone

    Quote Originally Posted by sercankd View Post
    no this is not same script.we cant call this one "script". its just html crap.wait i can translate to english tomorrow
    Still not translated or can you just give me the name of the file that need to be translated? So I could make my french version.
    Last edited by ET1996; 04-07-10 at 01:13 AM.

  12. #42
    Novice Jason512 is offline
    MemberRank
    Oct 2009 Join Date
    1Posts

    Re: Bitefight Clone

    All files need to be translated

  13. #43
    Proficient Member sercankd is offline
    MemberRank
    Sep 2005 Join Date
    localhostLocation
    193Posts

    Re: Bitefight Clone

    Development of this project is stopped due to my work. i dont have time to develop this script.so please do not ask about it.

  14. #44
    Enthusiast vesichaa is offline
    MemberRank
    Dec 2008 Join Date
    41Posts

    thumbs up Re: Bitefight Clone

    Quote Originally Posted by hireblade View Post
    The files that i've downloaded don't work :/
    Download

  15. #45
    Honest person, not nice.. shadow destroy is offline
    MemberRank
    Feb 2007 Join Date
    www.dedeno.netLocation
    218Posts

    Re: Bitefight Clone

    I find it kind of dumb that all these people don't actually realize that there won't be people helping out if the script is not in english.
    You could have had all bugs fixed and addons created by other by this time, but we really are too cba

    If you come across a script which is russian or german, you don't bother either, so you must understand.
    Last edited by shadow destroy; 20-08-10 at 02:22 PM.



Page 3 of 6 FirstFirst 123456 LastLast

Advertisement