Jump to content

yagokurt

Inactive Member
  • Posts

    168
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by yagokurt

  1. Hi, i'm trying install the untouched 34083 files from rumor and i'm having some problems on the process.

    The problem is

     

    I cant login on the server.

    If i put the right login and password i get a "error connect to server"

    But if i put the wrong user and pass just get an error saying the user and pass is invalid. Here i leave the syserr. And some times the login sometimes blink show the mensage "you will be connected to server" and then just blnk and go back to channel select.

     

     

     

     

    SYSERR DB

     

    SYSERR: May 19 21:06:05 :: pid_init: 
    Start of pid: 28988
    
    SYSERR: May 19 21:06:05 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: May 19 21:06:11 :: Load:  DirectQuery failed(SELECT login FROM block_exception)
    SYSERR: May 19 21:06:26 :: Process: FDWATCH: peer null in event: ident 20
    SYSERR: May 19 21:06:44 :: Process: FDWATCH: peer null in event: ident 20 

     

     

     

     

    SYSERR AUTH

     

     

    SYSERR: May 19 21:06:08 :: pid_init: 
    Start of pid: 28994
    
    SYSERR: May 19 21:06:08 :: socket_connect: HOST 127.0.0.1:15010, could not connect.
    SYSERR: May 19 21:06:11 :: socket_connect: HOST 127.0.0.1:15010, could not connect. 

     

     

    SYSERR CHANNEL1 FIRST

     

     

    SYSERR: May 19 21:06:08 :: pid_init: 
    Start of pid: 29008
    
    SYSERR: May 19 21:06:08 :: socket_connect: HOST 127.0.0.1:15010, could not connect.
    SYSERR: May 19 21:06:11 :: socket_connect: HOST 127.0.0.1:15010, could not connect.
    SYSERR: May 19 21:06:26 :: GetMotionFileName: Motion: spider_egg have not motlist.txt vnum(2095) folder(spider_egg)
    SYSERR: May 19 21:06:26 :: GetMotionFileName: Motion: spider_egg have not motlist.txt vnum(2095) folder(spider_egg)
    SYSERR: May 19 21:06:26 :: GetMotionFileName: Motion: spider_egg have not motlist.txt vnum(2095) folder(spider_egg)
    SYSERR: May 19 21:06:26 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 0 mob 3596 skill 257
    SYSERR: May 19 21:06:26 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 1 mob 3596 skill 258
    SYSERR: May 19 21:06:26 :: LoadMotion: cannot find accumulation data in file 'data/monster/boar/run.msa'
    SYSERR: May 19 21:06:31 :: pid_init: 

  2. the serverfiles was german or english ? :)

     

    Hi Ossiix, its in English.

     

     

     

    EDIT

     

    Hi, i'm having this problem when i try start the files.

     

    Syserr DB:

    SYSERR: May 19 15:38:41 :: pid_init: 
    Start of pid: 2778
    
    SYSERR: May 19 15:38:41 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: May 19 15:38:46 :: Load:  DirectQuery failed(SELECT login FROM block_exception)
    SYSERR: May 19 15:38:53 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:02 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:11 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:20 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:29 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:38 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:47 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:39:56 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:40:05 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 15:40:14 :: Process: FDWATCH: peer null in event: ident 21
    

    Syserr AUTH

    SYSERR: May 19 15:38:43 :: pid_init: 
    Start of pid: 2782
    
    SYSERR: May 19 15:38:43 :: socket_connect: HOST 127.0.0.1:15010, could not connect.
    SYSERR: May 19 15:38:46 :: socket_connect: HOST 127.0.0.1:15010, could not connect.
    
  3. Thanks Zetsu. Alrdy add you

     

     

    How i can change it to get a gift after X hour online? And for me isnt working the "hide". I click on box get the gift and it still there i try too the LSHIFT + P but didnt work

     

    Check this:

    -- © 2014 Zetsu - This system it's made by me for metin2Dev.org
    -- Thanks:
    -- THS Dev Team
    -- Invictus for some changes
    -- Do not change Copyrights or re-post on another stupid forums!
    quest thsgiftdev begin
        state start begin
            when logout begin
                pc.setqf("giftsystemuse", 0)
            end
            when login begin
                cmdchat("zetsugfsys "..q.getcurrentquestindex())
                if pc.getqf("giftsystemuse") ~= 0 then
                    if pc.getqf("giftsystemuse") <= get_time() then
                        thsgiftdev.giverandomitem()
                    end
                end
                if pc.getqf("giftsystemuse") == 0 then
                    local hours = 2
                    pc.setqf("giftsystemuse", get_time()+60*60*hours)
                end
            end
             
            function giverandomitem()
                local random_nr = number(1,5)
                local hours = 2
                chat("I: The box it's opening...") -- Opening
                if random_nr==1 then
                    pc.give_item2(tonumber(mysql_query('SELECT box1 from player.surprisebox WHERE openorclose=1 LIMIT 1;').box1[1]))
                elseif random_nr==2 then
                    pc.give_item2(tonumber(mysql_query('SELECT box2 from player.surprisebox WHERE openorclose=1 LIMIT 1;').box2[1]))
                elseif random_nr==3 then
                    pc.give_item2(tonumber(mysql_query('SELECT box3 from player.surprisebox WHERE openorclose=1 LIMIT 1;').box3[1]))
                elseif random_nr==4 then
                    pc.give_item2(tonumber(mysql_query('SELECT box4 from player.surprisebox WHERE openorclose=1 LIMIT 1;').box4[1]))
                elseif random_nr==5 then
                    pc.give_item2(tonumber(mysql_query('SELECT box5 from player.surprisebox WHERE openorclose=1 LIMIT 1;').box5[1]))
                end
                pc.setqf("giftsystemuse", get_time()+60*60*hours)
                cmdchat("giftsyshide")
            end
     
            when button or info begin
                if pc.getqf("giftsystemuse") ~= 0 then
                    if pc.getqf("giftsystemuse") <= get_time() then
                        thsgiftdev.giverandomitem() -- yeah..function  don't try to bind that condition with this..
                    else
                        chat("W: You have no gift. Try after 12 hours...") -- Played
                    end
                end
                if pc.getqf("giftsystemuse") == 0 then
                    local hours = 2
                    pc.setqf("giftsystemuse", get_time()+60*60*hours)
                end            
            end
        end
    end

    I have added new variable named hours and you can change the hour there.

    If I understand right you want the player to receive the gift after 1 hour online for example,so I made the quest when you're logging out the time is set to 0 and you can't open it.

     

    I didn't have much time to made it, so this may not work properly

     

     

    Thanks i will take a look how u did and add to the quest from kingtsunami. I'm using this quest rnow.

     

    quest thsgiftdev begin
    	state start begin  
    		when login begin
    			cmdchat("zetsugfsys "..q.getcurrentquestindex())
    		end
    		  
    		function giverandomitem()
    			local ids = number(1,5)
    			local items = {
    			--	number_id vnum count size
    				[1] = {279,1,2},
    				[2] = {19,1,2},
    				[3] = {299,1,2},
    				[4] = {169,1,2},
    				[5] = {159,1,2},
    			 
    			}
    			if pc.get_empty_inventory_count() >= items[ids][3] then
    				pc.give_item2(items[ids][1],items[ids][2])
    				pc.setqf("giftsystemuse", get_time()+60*60*12)
    				cmdchat("giftsyshide")
    			else
    				syschat("You don't have enough space.")
    			end
    		end
    		when button or info begin
    			if pc.get_level() >= 105 then
    				if pc.getqf("giftsystemuse") <= get_time() then
    					thsgiftdev.giverandomitem()
    				else
    					syschat("You can open the box every 12 hours,please be patient.")
    				end
    			else
    				syschat("You will need to be level 105 to open the giftbox.")
    			end
    		end
    	end
    end


     

  4. It's really interesting. Did you try it in another mapindex? Or you may check if the coordinates are in conflict with another map's coordinates, but I wouldn't think that it could cause such problems.

     

     

    Yes its rly strange how this happen. I didnt try change the mapindex atm, i will try it. And conflic with other coordenates i dont think too,

  5. Have you changed anything in your game file that has to with groups? 

     

    Nothing Roxa, and only happen on this map, now i put it separated in a diferent core to be easy check the errors. But dont record anything about it. A player invite me party i accept and it just crash.

  6. Hi, i'm having a problem. i run the "run.sh" and dont get any error, but i cant connect, then i check the syserr and i get this.
     
    syserr db
     
    SYSERR: May 19 03:25:13 :: pid_init: 
    Start of pid: 6397
    
    SYSERR: May 19 03:25:13 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: May 19 03:25:18 :: Load:  DirectQuery failed(SELECT login FROM block_exception)
    SYSERR: May 19 03:25:19 :: __GetHostInfo: __GetHostInfo() ==> DirectQuery failed(SELECT mIP FROM gmhost)
    SYSERR: May 19 03:25:19 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='XXXXX')
    SYSERR: May 19 03:25:24 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: May 19 03:25:29 :: __GetHostInfo: __GetHostInfo() ==> DirectQuery failed(SELECT mIP FROM gmhost)
    SYSERR: May 19 03:25:29 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='XXXX')
    SYSERR: May 19 03:25:33 :: Process: FDWATCH: peer null in event: ident 21

     

    Alrdy put this QUERY

    /*
    Navicat MySQL Data Transfer
     
    Source Server         : Metin2Nirvana@CloudCom
    Source Server Version : 50616
    Source Host           : 
    Source Database       : common
     
    Target Server Type    : MYSQL
    Target Server Version : 50616
    File Encoding         : 65001
     
    Date: 2014-02-17 13:13:50
    */
     
    SET FOREIGN_KEY_CHECKS=0;
     
    -- ----------------------------
    -- Table structure for `gmlist`
    -- ----------------------------
    DROP TABLE IF EXISTS `gmlist`;
    CREATE TABLE `gmlist` (
      `mID` int(10) unsigned NOT NULL AUTO_INCREMENT,
      `mAccount` varchar(32) CHARACTER SET big5 NOT NULL DEFAULT '',
      `mName` varchar(32) CHARACTER SET big5 NOT NULL DEFAULT '',
      `mContactIP` varchar(16) CHARACTER SET big5 NOT NULL DEFAULT '',
      `mServerIP` varchar(16) CHARACTER SET big5 NOT NULL DEFAULT 'ALL',
      `mAuthority` enum('IMPLEMENTOR','HIGH_WIZARD','GOD','LOW_WIZARD','PLAYER') CHARACTER SET big5 DEFAULT 'PLAYER',
      PRIMARY KEY (`mID`)
    ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
     
    -- ----------------------------
    -- Records of gmlist
    -- ----------------------------
  7. Hi, i'm trying give some commands to my gms but they isnt working. I edit the CMD file and put like this

    LtL8fYr.png

    My gm alrdy is HIGH_WIZARD. He can do /poly but the cant do /m or /mm, just get the error saying the command is invalid. Some1 know why maybe this is happening?

  8. I've also met with this bug but I thought that it's fixed in the newest game files. Anyway, it seems possible that it can be also buggy if your p2p ports have too high values.

     

    Hi i still using the old game atm the 34k.

    And how i can check those values of the p2p ports?

     

     

    -edit-

     

    i changed the maps from ch2 core2 (bugged core) to another working core and then the chat just stop work on this core too.

     

    And i try open a new channel too. But the same bug happen on it. All city from each empire.

  9. Hi guys, i'm having a little problem on my server this start from nothing. Didnt change anything and this start.

    Persons on ch1 all core can talk with ch2 (core3, core4) but if i try send PM to users on ch2 core 2 i get a error and say the user is offline. Any1 have a idea how i can fix it? :S

     

     

     

     

    -EDIT-

     

    iMer said it is the P2P port. Any1 know how i can restart this port? Or Unbug it?

  10. Hi to all. I'm having a little proble. Some times my cores randon crash. Here i will leave the last 20 lines of syserr maybe u guys see something strange.

     

    SYSERR: May  7 04:18:38 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:18:53 :: Entergame: !GetMovablePosition (name DaviidM7 1231200x1959300 map 137 changed to 1374700x2128300)
    SYSERR: May  7 04:21:10 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:21:10 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:21:11 :: Entergame: !GetMovablePosition (name llFuckUll 1231200x1959300 map 137 changed to 1374700x2128300)
    SYSERR: May  7 04:21:53 :: Entergame: !GetMovablePosition (name WipeeR 98776600x98776600 map 215 changed to 98801600x98801600)
    SYSERR: May  7 04:25:47 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:25:47 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:26:23 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:26:23 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:29:59 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:29:59 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:31:28 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:31:28 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:31:39 :: Process: UNKNOWN HEADER: 184, LAST HEADER: 0(0), REMAIN BYTES: 190, fd: 36
    SYSERR: May  7 04:32:27 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 04:32:27 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 04:33:44 :: affect_add_collect: invalid argument
    SYSERR: May  7 04:34:23 :: Entergame: !GetMovablePosition (name MetholMen 1231200x1959300 map 137 changed to 1374700x2128300)
    SYSERR: May  7 04:38:39 :: Entergame: !GetMovablePosition (name pandorax 1350867x2137917 map 137 changed to 1374700x2128300)
    
    SYSERR: May  7 03:04:51 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(2974) Map(194) 
    SYSERR: May  7 03:04:51 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(2974) Map(194) 
    SYSERR: May  7 03:04:58 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(2992) Map(194) 
    SYSERR: May  7 03:04:58 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(2992) Map(194) 
    SYSERR: May  7 03:04:58 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(2992) Map(194) 
    SYSERR: May  7 03:05:37 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 03:05:37 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 03:05:55 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 03:05:55 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 03:06:51 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 03:06:51 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 03:06:59 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: May  7 03:06:59 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: May  7 03:07:22 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(32113) Map(131) 
    SYSERR: May  7 03:07:22 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(32113) Map(131) 
    SYSERR: May  7 03:08:51 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(32102) Map(131) 
    SYSERR: May  7 03:08:51 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(32102) Map(131) 
    SYSERR: May  7 03:08:51 :: SpawnGroup: NOT_EXIST_GROUP_VNUM(32102) Map(131) 
    SYSERR: May  7 03:09:52 :: Entergame: !GetMovablePosition (name 0001CcroNosS 906000x927600 map 131 changed to 940100x919400)
    SYSERR: May  7 03:10:08 :: HandshakeProcess: handshake retry limit reached! (limit 32 character !NO CHARACTER!)
    
    

     

  11. Same syserr. Only change the line error now to 503

    0424 11:14:06732 ::
    networkModule.py(line:194) SetSelectCharacterPhase
    system.py(line:130) __pack_import
    system.py(line:110) _process_result
    introSelect.py(line:28) ?
    system.py(line:130) __pack_import
    system.py(line:110) _process_result
    interfaceModule.py(line:14) ?
    system.py(line:130) __pack_import
    
    networkModule.SetSelectCharacterPhase - exceptions.IndentationError:unindent does not match any outer indentation level (line 503)
    
    0424 11:14:06732 :: ============================================================================================================
    0424 11:14:06732 :: Abort!!!!
    
    
    
×
×
  • 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.