Would anyone reply and fix the error ? What should I do to gain your attention ?

Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    SilkRoad vSro Service MaDenGo is offline
    MemberRank
    Aug 2012 Join Date
    vSro CommunityLocation
    512Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    Code:
    Association Reputation Check is Failed
    Attachment 122545 I removed the server and reset it again, and reinstalled the Visual C++ Runtime Library and still the same problem exists.

    give us information to try to solve your problem

    you used 5Page inventory.
    if your yes , execute this querrys

    *This to delete pets from all Server Characters
    Code:
    USE SRO_VT_SHARD EXEC _SEEK_N_DESTROY_ITEM [Here Write Pets Codes]
    *This to back your pets 1Page inventory again
    Code:
    USE [SRO_VT_SHARD]
    GO
    /****** Object: StoredProcedure [dbo].[_AddNewCOS] Script Date: 09/01/2012 12:09:06 ******/
    SET ANSI_NULLS OFF
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    ALTER PROCEDURE [dbo].[_AddNewCOS]
    @OwnerCharID int,
    @RefObjID int,
    @Level int,
    @HP int,
    @MP int,
    @HGP int,
    @KeeperNPC int,
    @State int,
    @InventorySize int,
    @itemID int,
    @PickItemConfig tinyint,
    @RentEndTime smalldatetime
    as
    
    begin tran
    
    declare @COS_ID int
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    -- pet_skill_item (ÃÖ¼±È£) 
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    
    declare @MaxInventorySize tinyint
    select @MaxInventorySize = InventorySize
    from _RefObjCommon, _RefObjChar
    where _RefObjCommon.ID = @RefObjID and _RefObjCommon.Link = _RefObjChar.ID
    
    if( @@rowcount = 0 or @MaxInventorySize < @InventorySize )
    begin
    rollback tran
    return -5
    end
    
    insert into _CharCOS values (@OwnerCharID, @RefObjID, @HP, @MP, @KeeperNPC, @State, NULL, @Level, 0, @HGP, @PickItemConfig, @RentEndTime)
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    set @COS_ID = @@identity
    if (@COS_ID = 0 OR @@error <> 0)
    begin
    rollback tran
    return -1
    end
    
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    -- pet_skill_item (ÃÖ¼±È£) 
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    if (@MaxInventorySize > 0)
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    begin
    declare @Slot int
    set @Slot = 0
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    -- pet_skill_item (ÃÖ¼±È£) 
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    while (@Slot < @MaxInventorySize)
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    begin
    insert into _InvCOS values(@COS_ID, @Slot, 0)
    if (@@error <> 0)
    begin
    -- Àκ¥Å丮 »ý¼º ½ÇÆÐ!
    rollback tran
    return -2
    end 
    
    set @Slot = @Slot + 1
    end
    end
    
    /* --´õ ÀÌ»ó ÀÌ Ä÷³¿¡´Â µ¥ÀÌÅ͸¦ ³ÖÁö ¾Ê´Â´Ù!
    UPDATE _Char SET EngagedCOS = @COS_ID WHERE CharID = @OwnerCharID
    IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
    BEGIN
    ROLLBACK TRANSACTION
    RETURN -3
    END
    */
    if( @itemID <> 0 )
    begin
    update _Items set Data = @COS_ID where ID64 = @itemID
    if( @@error <> 0 or @@rowcount = 0 )
    begin
    rollback transaction
    return -4
    end
    end
    
    commit tran
    
    return @COS_ID
    Which Sr_GameServer your using !
    The Really perfect one is Chernobyl sr_gameserver you can find it on Release section

    Like if Helped

  2. #17
    Valued Member OnlyRipper is offline
    MemberRank
    Aug 2008 Join Date
    104Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by mazazekoo View Post
    Man please did you start your server from the SMC or have tryed to do that and failed ?
    i started with/without SMC and it's the same look here please.
    http://forum.ragezone.com/f739/check-screen-907649/

  3. #18
    Valued Member mazazekoo is offline
    MemberRank
    Apr 2012 Join Date
    132Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    i started with/without SMC and it's the same look here please.
    http://forum.ragezone.com/f739/check-screen-907649/
    can you show me the SR_Gameserver's picuter ? you are showing me the globalmanager only

  4. #19
    Valued Member OnlyRipper is offline
    MemberRank
    Aug 2008 Join Date
    104Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by mazazekoo View Post
    Man please did you start your server from the SMC or have tryed to do that and failed ?
    Quote Originally Posted by mazazekoo View Post
    can you show me the SR_Gameserver's picuter ? you are showing me the globalmanager only
    '

    Done!
    Look here:http://forum.ragezone.com/f739/check-screen-907649/
    That its' my post xD please
    It's with all errors that i have +screens

  5. #20
    Valued Member mazazekoo is offline
    MemberRank
    Apr 2012 Join Date
    132Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    '

    Done!
    Look here:http://forum.ragezone.com/f739/check-screen-907649/
    That its' my post xD please
    It's with all errors that i have +screens
    LOL cool please check your ini.txt and your DB Name :) thats all

  6. #21
    Valued Member OnlyRipper is offline
    MemberRank
    Aug 2008 Join Date
    104Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    same....i've chcked,rewrite all! i don't know what to do ...can you give me your skype?
    just don't know what to do


    DONE!
    Thx to mazazekoo i set up the server now it's done.i have some problems with the cllient now because the launcher don't want to update it can'd find jupiter mobs,some skills from jupiter mobs
    Last edited by OnlyRipper; 30-01-13 at 01:41 PM.

  7. #22
    Enthusiast samersamirg is offline
    MemberRank
    Jan 2013 Join Date
    31Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by mazazekoo View Post
    thanks for the like.. and i didn't understand you by v1.193 did you mean the new job system or your client version ?

    if it is the new job you will have to visit this link http://forum.ragezone.com/f722/vsro-...ew-job-816344/
    and if it is your client version you will have download the IPInput tool to change the client version to your DB's version and server's version .
    umm I did exactly what you said and the game started normally, then I entered the id & pw and after the image verification code the game crashes (no code appears just an empty box) and I get this error untitled15.jpg BTW my OS is Win 7 SP1 not XP :D. Actually about the new job system I did get the client and the db but I wasn't able to add my ip in that db so I used 1.188 db but the 1.188 client does not work (x-trap crashes the game) so I used the client came with 1.193 db
    Last edited by samersamirg; 30-01-13 at 03:40 PM.

  8. #23
    Valued Member OnlyRipper is offline
    MemberRank
    Aug 2008 Join Date
    104Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by samersamirg View Post
    umm I did exactly what you said and the game started normally, then I entered the id & pw and after the image verification code the game crashes (no code appears just an empty box) and I get this error untitled15.jpg BTW my OS is Win 7 SP1 not XP :D
    i think it's something with sro_client.Not sure


    what db are you using and what client?

  9. #24
    Enthusiast samersamirg is offline
    MemberRank
    Jan 2013 Join Date
    31Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    i think it's something with sro_client.Not sure


    what db are you using and what client?
    v.1.193 client (the one in the new job system thread) and v1.188 db. P.S. I edited the version of the client with the db's version and same in the server.cfg

  10. #25
    Valued Member OnlyRipper is offline
    MemberRank
    Aug 2008 Join Date
    104Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    that means the client it's wrong try with statiic db and 188 client,do you really want that new job system?

  11. #26
    In the Emperor name Caosfox is offline
    MemberRank
    Jun 2011 Join Date
    Balcora GateLocation
    1,608Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    http://forum.ragezone.com/f739/check-screen-907649/
    here you'll find

    ps: When i enter in client it doesnt'appear "check"but some strange letter and no text like Login/Connect/Exit everythign it's transparent
    try another textuisystem.txt

  12. #27
    Enthusiast samersamirg is offline
    MemberRank
    Jan 2013 Join Date
    31Posts

    Re: Would anyone reply and fix the error ? What should I do to gain your attention ?

    Quote Originally Posted by OnlyRipper View Post
    that means the client it's wrong try with statiic db and 188 client,do you really want that new job system?
    no not at all the problem isn't with the new job system but the v1.188 client has an x-trap security and it crashes the client

    now my problem is more specific if i'll work with the v1.188 client and DB I need help with disabling the x-trap loading with the client OR if I work with v1.193 client and DB (new job system) I get DCed as soon as the character loads, so anyone can help me ? ^_^



Page 2 of 2 FirstFirst 12

Advertisement