Help...

Results 1 to 22 of 22
  1. #1
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Help...

    I followed the tutorial and all works but i noticed that in the store there are less items than normal and no premiums... i saw many server with alot more items in stre can u tell me how to get a decent amount of items in shop?


  2. #2
    MentaL's Slave Keith is offline
    LegendRank
    Nov 2004 Join Date
    2,671Posts
    You need to add the prems and items in shop.xml

  3. #3
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts
    thanks.... but where is a list of all item ids? :P
    And i've got 2 other questions...
    can you tell me how to add ports on windows firewall to make the server work also with windows firewall active?
    why when i try to edit the procedure InsertChar to edit starting lvl and bounty e get errors when i try to run the query?

    sorry for bad english :)
    Last edited by noffa; 24-02-07 at 01:11 PM.

  4. #4
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts
    plz reply :(

  5. #5
    Account Upgraded | Title Enabled! mts is offline
    MemberRank
    Dec 2006 Join Date
    354Posts
    ITEM IDs: You can find at zitem.xml

    But there are a lot of shop in release section that have all the prems..

  6. #6
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts
    ok thanks... and someone can help me with the other problems? :)
    Quote Originally Posted by myself
    can you tell me how to add ports on windows firewall to make the server work also with windows firewall active?
    why when i try to edit the procedure InsertChar to edit starting lvl and bounty e get errors when i try to run the query?

  7. #7
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    Bump.

  8. #8
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    Bump! :P

  9. #9
    RageZ Hell kekku500 is offline
    MemberRank
    Nov 2006 Join Date
    EstoniaLocation
    672Posts

    Re: Help...

    Stop spamming

  10. #10
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    Its not spamming i just bump topic every 12 hours >_>

  11. #11
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    bump >_>

  12. #12
    Gunz League owner Hakurah is offline
    MemberRank
    Dec 2006 Join Date
    Rio de JaneiroLocation
    602Posts

    Re: Help...

    No. Turn the fuckin firewall off.

    And. Try to get a InsertChar new proc, yours is with some kind of problem.

  13. #13
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    ok... where can i find the proc?

  14. #14
    Member jnq1234 is offline
    MemberRank
    Sep 2006 Join Date
    dfasdLocation
    78Posts

    Re: Help...

    Quote Originally Posted by noffa View Post
    ok... where can i find the proc?
    edit phop.xml::::hiepsygiay=== chuyengianoinguoc@yahoo.com



    <?xml version="1.0" encoding="euc-kr" ?>
    <XML id="shop">
    <!--

  15. #15
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    i just want the corrent InsertChar proc...

  16. #16
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts

    Re: Help...

    Code:
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    -- =============================================
    -- Author:		<RepublicOfAstra>
    -- Description:	<spInsertChar Procedure>
    -- =============================================
    ALTER PROCEDURE [dbo].[spInsertChar]
    (
    @AID tinyint,
    @Charnum tinyint,
    @Name varchar(50),
    @Sex tinyint,
    @Hair tinyint,
    @Face tinyint,
    @Costume tinyint
    )	
    AS
    
    
    
    INSERT INTO Character(AID, CharNum, Name, [Level], Sex, Hair, Face, Costume, XP, BP, HP, AP, FR, CR, ER, WR, KillCount, DeathCount, PlayTime, CIID, FriendCID, CLID)
    
    VALUES (@AID, @CharNum, @Name,99 ,@Sex, @Hair, @Face, @costume, 999999,9999999999999999,
    0,100,1,1,1,1, NULL, NULL, NULL, NULL, NULL, 0);
    It's the one I use, it seems to work pretty well. Just modify the lvl, BP, XP, etc. I have mine set to lvl 99 by default, and I never bothered to fix the XP to make it appropriate for a lvl 99.

  17. #17
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    ok thanks ;)

  18. #18
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    i get these errors with the qury.... sorry if they are in italian but my MSSQL is in italian :P

    Messaggio 207, livello 16, stato 1, procedura spInsertChar, riga 19
    Il nome di colonna 'CIID' non

  19. #19
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    hey i've got a strange bug.... i was testing the serevr with a normal acc and in a quest i lvled up to lvl 7 and when i finished quest and exited the room i was lvl 50! -.-

  20. #20
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    bump!

  21. #21
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts

    Re: Help...

    You need to adjust the exp rates most likely (in formula.xml).

  22. #22
    Account Upgraded | Title Enabled! noffa is offline
    MemberRank
    Jun 2006 Join Date
    Behind youLocation
    212Posts

    Re: Help...

    i set all to 20 isnt it ok?



Advertisement