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.
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!
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.
Re: Little help here please?
Quote:
Originally Posted by
Phoenix
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...
Re: Little help here please?
Dbo.Clan<expand<Columns<expand<Point<right click<Modifye<http://img841.imageshack.us/img841/8777/lolyvf.jpg
make it ((0)) and then save :).
Re: Little help here please?
Quote:
Originally Posted by
Phoenix
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.
Re: Little help here please?