Jump to content

metin2team

Inactive Member
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    15
  • Feedback

    0%

Posts posted by metin2team

  1. Im

    38 minutes ago, ImBacK said:

    im pet pickup system there is bug pet stuck in some time and not taking item 

    in pickup pet i have some stuck with iteSuztHNtMbH.gif

                                if (!item->GetSectree() || !item->IsOwnership(player))
                                    return;

  2. Spoiler

    $_POST['question'] = "is it a good release?";
    $_POST['is_true'] = false;
    if($_POST)

    {

        // add_ox_quiz(1,"Ist das Rote Reich das Reich der Hنndler?",true)

        echo sprintf("add_ox_quiz(1, \"%s\", %s)\n", $_POST['question'], $_POST['is_true']? "true" : "false");
        $_POST['question'] = "is it a good release?";
        $_POST['is_true'] = true;
        echo sprintf("add_ox_quiz(1, \"%s\", %s)\n", $_POST['question'], $_POST['is_true']? "true" : "false");
    }

    // output

    add_ox_quiz(1, "is it a good release?", false)
    add_ox_quiz(1, "is this a good release?", Hell no) // :D

    I released the source of this topic. do you have to worship me?! (non-sense)

    other than that is just a simple html form with one input text with one checkbox "true". if not checked then false. and a submit button.

    • Love 2
  3. Table 'account.player_index' doesn't exist

    Table 'account.safebox' doesn't exist

    Table 'account.messenger_list' doesn't exist

    you have to change account table in game cores CONFIG file  NOT AUTH to player.

    1 minute ago, tierrilopes said:

    DROP TABLE IF EXISTS `safebox`;
    CREATE TABLE `safebox` (
      `account_id` int(10) unsigned NOT NULL DEFAULT '0',
      `size` tinyint(3) unsigned NOT NULL DEFAULT '0',
      `password` varchar(6) NOT NULL DEFAULT '',
      `gold` int(11) NOT NULL DEFAULT '0',
      PRIMARY KEY (`account_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    DROP TABLE IF EXISTS `messenger_list`;
    CREATE TABLE `messenger_list` (
      `account` varchar(12) NOT NULL DEFAULT '',
      `companion` varchar(12) NOT NULL DEFAULT '',
      PRIMARY KEY (`account`,`companion`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    wtf?

    • Love 1
×
×
  • 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.