Jump to content

SøηGøku®

Inactive Member
  • Posts

    148
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by SøηGøku®

  1. How to solve this error in syserr at db

     

    SYSERR: Mar 19 23:01:06 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: Mar 19 23:01:06 :: Load:  DirectQuery failed(SELECT IP_FROM, IP_TO, COUNTRY_NAME FROM iptocountry)
    SYSERR: Mar 19 23:21:12 :: Process: FDWATCH: peer null in event: ident 23

     

    Please, its urgent.

  2. Hi guys, Gives me this error on the machine...

     

    JB4Cf.png

     

    And in the syserr gives me this ...

     

    SYSERR: Mar 18 22:21:07 :: IsScriptTrue: LUA ScriptRunError (code:1 src:[return pc . is_guildmaster ( ) == truesay ( "" ) 
    say ( "Please +])
     
     
     
    How do i solve this?
  3. what do i change in my quest to work?

    quest pet_system begin
        state start begin
            function get_pet_info(itemVnum)
                pet_info_map = {
                --  [ITEM VNUM] MOB_VNUM, DEFAULT NAME, buff_idx, spawn_effect_idx
                    [53001]     = { 34001, "'s Fenix de Fogo", 0},
                    [53002]     = { 34002, "'s Rena Bebe", 0},
                    [53003]     = { 34003, "'s Fenix de Gelo", 0},
                    [53004]     = { 34001, "'s Fenix de Fogo", 0},
                    [53005]     = { 34004, "'s Azrael Bebe", 1},
                    [53006]     = { 34009, "'s Azreal d'Ouro", 1},
                    [53007]     = { 34010, "'s Bambi", 0},
                    [53008]     = { 34011, "'s Knuud", 0},
                    [53009]     = { 34012, "'s Bao Bao", 0},
                    [53010]     = { 34008, "'s Leonidas", 0},
                    [53011]     = { 34007, "'s Khan", 0},
                    [53012]     = { 34005, "'s Porky", 0},
                    [53013]     = { 34006, "'s Rufus", 0},
    				[53014]		= {	34013, "'s Executor", 1},
    				[53015]		= {	34014, "'s Executor", 1},
    				[53016] 	= { 34015, "'s Boney", 0},
    				[53017] 	= {	34016, "'s Fenix de Jade", 0},
    				[53018] 	= { 34017, "'s Barni", 0},
                }
    
                itemVnum = tonumber(itemVnum)
    
                return pet_info_map[itemVnum]
            end
    		function get_spawn_effect_file(idx)
    			effect_table = {
    				[0] = nil,
    				[1] = "d:ymir workeffectetcappear_dienpc2_appear.mse",
    			}
    			return effect_table [idx]
    		end
            when 53001.use or
    			 53002.use or
    			 53003.use or
    			 53004.use or
    			 53005.use or
    			 53006.use or
    			 53007.use or
    			 53008.use or
    			 53009.use or
    			 53010.use or
    			 53011.use or
    			 53012.use or
    			 53013.use or
    			 53014.use or
    			 53015.use or
    			 53016.use or
    			 53017.use or
    			 53018.use begin
    			 local pet_info = pet_system.get_pet_info(item.vnum)
    
                if null != pet_info then
    
                    local mobVnum = pet_info[1]
                    local petName = pet_info[2]
    				local spawn_effect_file_name = pet_system.get_spawn_effect_file(pet_info[3])
    
                    if true == pet.is_summon(mobVnum) then
    					if spawn_effect_file_name != nil then
    						pet.spawn_effect (mobVnum, spawn_effect_file_name)
    					end
                        pet.unsummon(mobVnum)
                    else
                        if pet.count_summoned() < 1 then
                            pet.summon(mobVnum, petName, false)
                        else
                            syschat("Tu ja chamaste um animal de estimacao.")
                        end
    					if spawn_effect_file_name != nil then
    						pet.spawn_effect (mobVnum, spawn_effect_file_name)
    					end
                    end -- if pet.is_summon
                end  -- if null != pet_info
            end -- when
        end -- state
    end -- quest
  4. Does this quest have the bug?

    When you put the signal "-" in the input it gives you more yang. 

    Let me show you an example:

    Input: -150000000 - If you don't have that amount, it will give you that amount when you extract because of the signal "-" before.

     

    Does this system have this bug?

     

     

     

    Best Regards.

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