Little help here please?

Results 1 to 8 of 8
  1. #1
    Account Upgraded | Title Enabled! adminjoker is offline
    MemberRank
    Jun 2009 Join Date
    USA - Stuart -Location
    247Posts

    Little help here please?

    Hi everyone i would like to know something about the clans!!!

    Ok each time a player make a clan on my server the points of the clan is 1000 right? How could i do to the "1000" turn into 0 and just increase the points if the clan wins and decrease to - "Negative" if he loses? Is there something i have to change? Is there something like a query to app it on the SQL Server? If so please tell me i apreciate your help.
    Thank guys waiting for answers...


  2. #2
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Little help here please?

    Umm, probably in one of the stored procedures. One of the ones dealing with clans. I'm not sure which one.

  3. #3
    Account Upgraded | Title Enabled! adminjoker is offline
    MemberRank
    Jun 2009 Join Date
    USA - Stuart -Location
    247Posts

    Re: Little help here please?

    Please man help me i really need to know this i think the right way is to start with 0 points and not with 1000 when you make a new clan!

  4. #4
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Little help here please?

    Clan.dbo:

    Code:
    [Point] [int] NOT NULL CONSTRAINT [DF_Clan_Point]  DEFAULT ((1000)),
    You need to find a way to edit the default value from 1000 to 0.
    I don't really see any stored procedure that needs to be edited.

  5. #5
    Account Upgraded | Title Enabled! adminjoker is offline
    MemberRank
    Jun 2009 Join Date
    USA - Stuart -Location
    247Posts

    Re: Little help here please?

    Quote Originally Posted by Phoenix View Post
    Clan.dbo:

    Code:
    [Point] [int] NOT NULL CONSTRAINT [DF_Clan_Point]  DEFAULT ((1000)),
    You need to find a way to edit the default value from 1000 to 0.
    I don't really see any stored procedure that needs to be edited.
    well do i have to change the 1000 to 0 as a new query like:
    Code:
    [Point] [int] NOT NULL CONSTRAINT [DF_Clan_Point]  DEFAULT ((0)),
    and execute it on MS SQL? If so just tell me cause i didn't understood the stored procedure that needs to be edited...

  6. #6
    Ecchi addicted adz28 is offline
    MemberRank
    Nov 2008 Join Date
    IkebukuroLocation
    524Posts

    Re: Little help here please?

    Dbo.Clan<expand<Columns<expand<Point<right click<Modifye<
    make it ((0)) and then save :).
    Last edited by adz28; 10-02-11 at 02:34 AM.

  7. #7
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Little help here please?

    Quote Originally Posted by Phoenix View Post
    Clan.dbo:

    Code:
    [Point] [int] NOT NULL CONSTRAINT [DF_Clan_Point]  DEFAULT ((1000)),
    You need to find a way to edit the default value from 1000 to 0.
    I don't really see any stored procedure that needs to be edited.
    lol that would explain it.

  8. #8
    Account Upgraded | Title Enabled! adminjoker is offline
    MemberRank
    Jun 2009 Join Date
    USA - Stuart -Location
    247Posts

    Re: Little help here please?

    Thank you so much Adz



Advertisement