|
You last visited: Today at 16:15
Advertisement
[Help Thread] Please post your questions here.
Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.
05/16/2015, 23:17
|
#4651
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Usually the default string resource being used in the database is the Arabic one because the files come from Game Power 7.
If you are not Arabic find the table labeled dbo.StringResource and re label it...
StringResource_AR
Then find the table for your country launch argument...
StringResource_US
StringResource_CN
StringResource_DE
StringResource_FR
StringResource_HK
StringResource_JP
StringResource_KR
StringResource_TW
And rename it...
dbo.StringResource
The client string resource over rides the database string resource but if you are dumping the Arabic one to your client and then launching your client with a French argument FR you are only causing yourself issues.
Editing the proper string resource in your database then allows you to create a proper RDB for your client.
I hope all of this helps.
|
|
|
05/17/2015, 00:06
|
#4652
|
elite*gold: 0
Join Date: Aug 2013
Posts: 31
Received Thanks: 1
|
I already renamed my country's string resource to the standart stringresource.
But the thing is that only a few and not everything is emptystring/??? a lot of strings are working just fine
Some examples the tips in the loading screens = empty string
dungeon teleporter in hv = empty string
warehouse = empty string
.....
here some items:
gold bar
all pets
almost every part of eq ( but often just the second half of it)
...
|
|
|
05/17/2015, 05:20
|
#4653
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Quote:
Originally Posted by Kuchen31
I already renamed my country's string resource to the standart stringresource.
But the thing is that only a few and not everything is emptystring/??? a lot of strings are working just fine
Some examples the tips in the loading screens = empty string
dungeon teleporter in hv = empty string
warehouse = empty string
.....
here some items:
gold bar
all pets
almost every part of eq ( but often just the second half of it)
...
|
Was this before or after you created a new RDB for the client.
You may want to find a working client RDB and import it back into the database to correct your database string resource which sounds like it is already messed up.
|
|
|
05/17/2015, 09:55
|
#4654
|
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
|
Quote:
Originally Posted by thndr
I think you need to be a little more specific because sframe does not have a language per-se.
|
Quote:
Originally Posted by ismokedrow
Since the "mod" didn't find my picard meme 'necessary' let me rephrase.
As has been said 10000000^ times, the SFRAME.exe is LANGUAGE NEUTRAL meaning it itself has no inherent language. All text displayed inside of the SFRAME.exe during operation is loaded from one of two files db_string(ascii).rdb / db_string.rdb. The SFRAME.exe is then told which file to load from via the start arguments.
For example:
/Locale:
-- When set to ASCII all strings are read from db_string(ascii).rdb else all strings are read from db_string.rdb
/Country:
-- This is more determining country based options such as Announcement configuration and font. [Pretty sure it links directly to localeinfo.ini where settings are stated as [RAPPELZ_US] / [RAPPELZ_EU] etc..
|
sorry for that
what i mean is i want to make the PH 6.2 SFarme support the AR language
i change 'localeinfo.ini' but the words were unclear
|
|
|
05/17/2015, 14:54
|
#4655
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Quote:
Originally Posted by Sherock
sorry for that
what i mean is i want to make the PH 6.2 SFarme support the AR language
i change 'localeinfo.ini' but the words were unclear
|
Now this is the only place it kind of gets complicated.
The Arabic sframe is specially coded not only to block dance, but I believe also for the right to left text.
Everyone I have always hear launching a different sframe with the Arabic launch arguments complained that the text was backwards and left to right.
I a not sure how that is controlled in the sframe but you may want to look for an Arabic 6.2 sframe.
|
|
|
05/17/2015, 15:14
|
#4656
|
elite*gold: 0
Join Date: May 2013
Posts: 159
Received Thanks: 14
|
I have a question, I've recently put a value on my character permission 101 i added the command notice in table AllowedCommandsForPermission but does not work so
How can I select a specific permission?
|
|
|
05/17/2015, 15:53
|
#4657
|
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
|
Quote:
Originally Posted by thndr
Now this is the only place it kind of gets complicated.
The Arabic sframe is specially coded not only to block dance, but I believe also for the right to left text.
Everyone I have always hear launching a different sframe with the Arabic launch arguments complained that the text was backwards and left to right.
I a not sure how that is controlled in the sframe but you may want to look for an Arabic 6.2 sframe.
|
thanks my friend solve it for me
but one more question how to give permission to players in 6.2 ?
this Character script
Quote:
USE [Telecaster]
GO
/****** Object: Table [dbo].[Character] Script Date: 17/05/2015 04:51:49 م ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Character](
[sid] [int] IDENTITY(1,1) NOT NULL,
[name] [nvarchar](61) NOT NULL,
[account] [varchar](60) NOT NULL,
[account_id] [int] NOT NULL,
[slot] [int] NOT NULL,
[x] [int] NOT NULL,
[y] [int] NOT NULL,
[z] [int] NOT NULL,
[layer] [int] NOT NULL,
[race] [int] NOT NULL,
[sex] [int] NOT NULL,
[exp] [bigint] NULL,
[last_decreased_exp] [bigint] NULL,
[lv] [int] NOT NULL,
[max_reached_level] [int] NOT NULL,
[hp] [int] NOT NULL,
[mp] [int] NOT NULL,
[stamina] [int] NOT NULL,
[havoc] [int] NOT NULL,
[jlv] [int] NOT NULL,
[jp] [int] NOT NULL,
[total_jp] [int] NOT NULL,
[job_0] [int] NOT NULL,
[job_1] [int] NOT NULL,
[job_2] [int] NOT NULL,
[jlv_0] [int] NOT NULL,
[jlv_1] [int] NOT NULL,
[jlv_2] [int] NOT NULL,
[immoral_point] [int] NOT NULL,
[cha] [int] NOT NULL,
[pkc] [int] NOT NULL,
[dkc] [int] NOT NULL,
[huntaholic_point] [int] NOT NULL,
[create_time] [datetime] NOT NULL,
[delete_time] [datetime] NOT NULL,
[login_time] [datetime] NOT NULL,
[logout_time] [datetime] NOT NULL,
[login_count] [int] NOT NULL,
[play_time] [int] NOT NULL,
[belt_00] [bigint] NOT NULL,
[belt_01] [bigint] NOT NULL,
[belt_02] [bigint] NOT NULL,
[belt_03] [bigint] NOT NULL,
[belt_04] [bigint] NOT NULL,
[belt_05] [bigint] NOT NULL,
[permission] [int] NOT NULL,
[skin_color] [int] NOT NULL,
[model_00] [int] NOT NULL,
[model_01] [int] NOT NULL,
[model_02] [int] NOT NULL,
[model_03] [int] NOT NULL,
[model_04] [int] NOT NULL,
[job] [int] NOT NULL,
[gold] [bigint] NOT NULL,
[party_id] [int] NOT NULL,
[guild_id] [int] NOT NULL,
[prev_guild_id] [int] NOT NULL,
[flag_list] [varchar](4000) NOT NULL,
[client_info] [varchar](4096) NOT NULL,
[job_depth] [int] NOT NULL,
[summon_0] [int] NOT NULL,
[summon_1] [int] NOT NULL,
[summon_2] [int] NOT NULL,
[summon_3] [int] NOT NULL,
[summon_4] [int] NOT NULL,
[summon_5] [int] NOT NULL,
[main_summon] [int] NOT NULL,
[sub_summon] [int] NOT NULL,
[remain_summon_time] [int] NOT NULL,
[pet] [int] NOT NULL,
[chaos] [int] NOT NULL,
[adv_chat_count] [int] NOT NULL,
[name_changed] [int] NULL,
[auto_used] [int] NOT NULL,
[guild_block_time] [bigint] NOT NULL,
[pkmode] [tinyint] NOT NULL,
[otp_value] [int] NOT NULL,
[otp_date] [datetime] NOT NULL,
[chat_block_time] [int] NOT NULL,
[GUILD_SID] [int] NULL,
[PREV_GUILD_SID] [int] NULL,
[DEFAULT_WEAPON_SID] [bigint] NOT NULL,
[DEFAULT_WEAPON_CODE] [int] NOT NULL,
[DEFAULT_ARMOR_SID] [bigint] NOT NULL,
[DEFAULT_ARMOR_CODE] [int] NOT NULL,
[DEFAULT_BAG_SID] [bigint] NOT NULL,
[DEFAULT_BAG_CODE] [int] NOT NULL,
[IP] [real] NOT NULL,
[HUNTAHOLIC] [int] NOT NULL,
[REMAIN_CHAT_BLOCK_TIME] [int] NOT NULL,
[LOGOUT_DURATION] [int] NOT NULL,
[OUT_NAME_CHANGED] [int] NOT NULL,
CONSTRAINT [PK_IDX_Avatar] PRIMARY KEY NONCLUSTERED
(
[sid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
CONSTRAINT [UQ__Characte__72E12F1B18B6AB08] UNIQUE NONCLUSTERED
(
[name] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_jp] DEFAULT ((100000000)) FOR [jp]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_gold] DEFAULT ((100000000)) FOR [gold]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_GUILD_SID] DEFAULT ((0)) FOR [GUILD_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_PREV_GUILD_SID] DEFAULT ((0)) FOR [PREV_GUILD_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_WEAPON_SID] DEFAULT ((0)) FOR [DEFAULT_WEAPON_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_WEAPON_CODE] DEFAULT ((0)) FOR [DEFAULT_WEAPON_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_ARMOR_SID] DEFAULT ((0)) FOR [DEFAULT_ARMOR_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_ARMOR_CODE] DEFAULT ((0)) FOR [DEFAULT_ARMOR_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_BAG_SID] DEFAULT ((0)) FOR [DEFAULT_BAG_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_BAG_CODE] DEFAULT ((0)) FOR [DEFAULT_BAG_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_IP] DEFAULT ((0)) FOR [IP]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_HUNTAHOLIC] DEFAULT ((0)) FOR [HUNTAHOLIC]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_REMAIN_CHAT_BLOCK_TIME] DEFAULT ((0)) FOR [REMAIN_CHAT_BLOCK_TIME]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_LOGOUT_DURATION] DEFAULT ((0)) FOR [LOGOUT_DURATION]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_OUT_NAME_CHANGED] DEFAULT ((0)) FOR [OUT_NAME_CHANGED]
GO
|
|
|
|
05/17/2015, 18:01
|
#4658
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
I think in 6.2 GM permission was 1
|
|
|
05/17/2015, 18:11
|
#4659
|
elite*gold: 0
Join Date: May 2013
Posts: 159
Received Thanks: 14
|
Quote:
Originally Posted by thndr
I think in 6.2 GM permission was 1
|
yes in 62 permission = 1
but this .. can u help me?
Quote:
Originally Posted by thund22222
I have a question, I've recently put a value on my character permission 101 i added the command notice in table AllowedCommandsForPermission but does not work so
How can I select a specific permission?
|
|
|
|
05/17/2015, 18:16
|
#4660
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
No I can't help you the only commands, or permission levels I have ever gotten to work are the ones already in the table.
If I could have helped I would have answered.
|
|
|
05/17/2015, 18:40
|
#4661
|
elite*gold: 0
Join Date: May 2013
Posts: 159
Received Thanks: 14
|
in 62 he could add any number for permission but in 91 cannot be
for commands are specific permission 80 and it shows like a normal player in chat game also I don't think that you can control the permission 100 because this gives you full authority
|
|
|
05/17/2015, 19:08
|
#4662
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
There is a db_LocalCommand.rdb file I am taking more of a look at it now.
NVM that is just player commands.
|
|
|
05/17/2015, 20:35
|
#4663
|
elite*gold: 0
Join Date: May 2013
Posts: 159
Received Thanks: 14
|
I look at the file and found only this does not have any relationship to the commands
도움 help
도움말 help
로비이동 returnlobby
시즈공대결성 rpcreate
공대결성 rpcreate
screate rpcreate
전투대장임명 gappoint_battle_commander
전투대장위임 gdelegate_battle_commander
길드파티장초대 rp_ginvite
공파초대 rp_ginvite
길파초대 rp_ginvite
sinvite_gp rp_ginvite
용병파티장초대 rp_minvite
용파초대 rp_minvite
sinvite_hp rp_minvite
파티결성 pcreate
set_party pcreate
파티초대 pinvite
invite pinvite
어시스트 assist
지원 assist
파티추방 pkick
파티해산 pdestroy
파티탈퇴 pleave
leave pleave
파티정보 plist
pinfo plist
파티분배 pshare
파티장인계 ppromote
길드명변경 change_guild_name
change_gname change_guild_name
캐릭터명변경 change_name
change_cname change_name
길드결성 gcreate
길드초대 ginvite
길드추방 gkick
길드해체 gdestroy
길드탈퇴 gleave
길드장인계 gpromote
길드장교체 gpromote
친구추가 add_friend
친구삭제 del_friend
친구차단 add_denial
차단해제 del_denial
길드연합 gacreate
길드연합초대 gainvite
길드연합추방 gakick
길드연합탈퇴 galeave
길드연합가입 gajoin
길드연합해체 gadestroy
길드연합명변경 change_alliance_name
대련신청 battle_invite
duel battle_invite
대련수락 battle_accept
앉기_서버 sitdown
서기_서버 standup
앉기 sit
서기 stand
걷기 walk on
walk walk on
뛰기 run
마을프랍최적 townproplimit
노점표시 shopmode
타기 ride
내리기 unride
unmount_creature unride
개인상점 shop
노점 shop
조합 union
거래 trade
발자국효과음켜기 movesoundon
발자국효과음끄기 movesoundoff
PK pkoff
피케 pkoff
볼륨조절 set_vol
음악끔 music_off
화 rage
버럭 rage
분노 rage
사과 apology
사죄 apology
미안 apology
죄송 apology
ㅈㅅ apology
따분 boring
지겨움 boring
지루함 boring
지루 boring
후암 boring
인사 greeting
격식인사 greeting
환호 cheers
진격 cheers
만세 cheers
꺄악 cheers
박수 clap
짝짝 clap
춤 dance
댄스 dance
덩실덩실 dance
기쁨 laugh
웃음 laugh
웃기 laugh
행복 laugh
하하 laugh
안녕 hi
하이 hi
방가 hi
손인사 hi
부정 no
싫어 no
아니오 no
ㄴㄴ no
삐짐 pish
토라짐 pish
흥 pish
놀림 makeangry
메롱 makeangry
약올림 makeangry
도발 makeangry
조롱 makeangry
슬픔 sadness
흑흑 sadness
울기 sadness
울음 sadness
긍정 yes
좋아 yes
예 yes
ㅇㅇ yes
ㅇㅋ yes
위치 position
랜덤 share
각자 monopoly
each monopoly
|
|
|
05/17/2015, 21:34
|
#4664
|
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
|
there is no place for permission in telecaster 6.2 @@ ( character )
|
|
|
05/17/2015, 21:37
|
#4665
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Quote:
Originally Posted by Sherock
there is no place for permission in telecaster 6.2 @@ ( character )
|
Did you read the table you posted earlier???
USE [Telecaster]
GO
/****** Object: Table [dbo].[Character] Script Date: 17/05/2015 04:51:49 م ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Character](
[sid] [int] IDENTITY(1,1) NOT NULL,
[name] [nvarchar](61) NOT NULL,
[account] [varchar](60) NOT NULL,
[account_id] [int] NOT NULL,
[slot] [int] NOT NULL,
[x] [int] NOT NULL,
[y] [int] NOT NULL,
[z] [int] NOT NULL,
[layer] [int] NOT NULL,
[race] [int] NOT NULL,
[sex] [int] NOT NULL,
[exp] [bigint] NULL,
[last_decreased_exp] [bigint] NULL,
[lv] [int] NOT NULL,
[max_reached_level] [int] NOT NULL,
[hp] [int] NOT NULL,
[mp] [int] NOT NULL,
[stamina] [int] NOT NULL,
[havoc] [int] NOT NULL,
[jlv] [int] NOT NULL,
[jp] [int] NOT NULL,
[total_jp] [int] NOT NULL,
[job_0] [int] NOT NULL,
[job_1] [int] NOT NULL,
[job_2] [int] NOT NULL,
[jlv_0] [int] NOT NULL,
[jlv_1] [int] NOT NULL,
[jlv_2] [int] NOT NULL,
[immoral_point] [int] NOT NULL,
[cha] [int] NOT NULL,
[pkc] [int] NOT NULL,
[dkc] [int] NOT NULL,
[huntaholic_point] [int] NOT NULL,
[create_time] [datetime] NOT NULL,
[delete_time] [datetime] NOT NULL,
[login_time] [datetime] NOT NULL,
[logout_time] [datetime] NOT NULL,
[login_count] [int] NOT NULL,
[play_time] [int] NOT NULL,
[belt_00] [bigint] NOT NULL,
[belt_01] [bigint] NOT NULL,
[belt_02] [bigint] NOT NULL,
[belt_03] [bigint] NOT NULL,
[belt_04] [bigint] NOT NULL,
[belt_05] [bigint] NOT NULL,
[permission] [int] NOT NULL,
[skin_color] [int] NOT NULL,
[model_00] [int] NOT NULL,
[model_01] [int] NOT NULL,
[model_02] [int] NOT NULL,
[model_03] [int] NOT NULL,
[model_04] [int] NOT NULL,
[job] [int] NOT NULL,
[gold] [bigint] NOT NULL,
[party_id] [int] NOT NULL,
[guild_id] [int] NOT NULL,
[prev_guild_id] [int] NOT NULL,
[flag_list] [varchar](4000) NOT NULL,
[client_info] [varchar](4096) NOT NULL,
[job_depth] [int] NOT NULL,
[summon_0] [int] NOT NULL,
[summon_1] [int] NOT NULL,
[summon_2] [int] NOT NULL,
[summon_3] [int] NOT NULL,
[summon_4] [int] NOT NULL,
[summon_5] [int] NOT NULL,
[main_summon] [int] NOT NULL,
[sub_summon] [int] NOT NULL,
[remain_summon_time] [int] NOT NULL,
[pet] [int] NOT NULL,
[chaos] [int] NOT NULL,
[adv_chat_count] [int] NOT NULL,
[name_changed] [int] NULL,
[auto_used] [int] NOT NULL,
[guild_block_time] [bigint] NOT NULL,
[pkmode] [tinyint] NOT NULL,
[otp_value] [int] NOT NULL,
[otp_date] [datetime] NOT NULL,
[chat_block_time] [int] NOT NULL,
[GUILD_SID] [int] NULL,
[PREV_GUILD_SID] [int] NULL,
[DEFAULT_WEAPON_SID] [bigint] NOT NULL,
[DEFAULT_WEAPON_CODE] [int] NOT NULL,
[DEFAULT_ARMOR_SID] [bigint] NOT NULL,
[DEFAULT_ARMOR_CODE] [int] NOT NULL,
[DEFAULT_BAG_SID] [bigint] NOT NULL,
[DEFAULT_BAG_CODE] [int] NOT NULL,
[IP] [real] NOT NULL,
[HUNTAHOLIC] [int] NOT NULL,
[REMAIN_CHAT_BLOCK_TIME] [int] NOT NULL,
[LOGOUT_DURATION] [int] NOT NULL,
[OUT_NAME_CHANGED] [int] NOT NULL,
CONSTRAINT [PK_IDX_Avatar] PRIMARY KEY NONCLUSTERED
(
[sid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
CONSTRAINT [UQ__Characte__72E12F1B18B6AB08] UNIQUE NONCLUSTERED
(
[name] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_jp] DEFAULT ((100000000)) FOR [jp]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_gold] DEFAULT ((100000000)) FOR [gold]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_GUILD_SID] DEFAULT ((0)) FOR [GUILD_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_PREV_GUILD_SID] DEFAULT ((0)) FOR [PREV_GUILD_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_WEAPON_SID] DEFAULT ((0)) FOR [DEFAULT_WEAPON_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_WEAPON_CODE] DEFAULT ((0)) FOR [DEFAULT_WEAPON_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_ARMOR_SID] DEFAULT ((0)) FOR [DEFAULT_ARMOR_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_ARMOR_CODE] DEFAULT ((0)) FOR [DEFAULT_ARMOR_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_BAG_SID] DEFAULT ((0)) FOR [DEFAULT_BAG_SID]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_DEFAULT_BAG_CODE] DEFAULT ((0)) FOR [DEFAULT_BAG_CODE]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_IP] DEFAULT ((0)) FOR [IP]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_HUNTAHOLIC] DEFAULT ((0)) FOR [HUNTAHOLIC]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_REMAIN_CHAT_BLOCK_TIME] DEFAULT ((0)) FOR [REMAIN_CHAT_BLOCK_TIME]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_LOGOUT_DURATION] DEFAULT ((0)) FOR [LOGOUT_DURATION]
GO
ALTER TABLE [dbo].[Character] ADD CONSTRAINT [DF_Character_OUT_NAME_CHANGED] DEFAULT ((0)) FOR [OUT_NAME_CHANGED]
GO
What is this part for if there is no such place to add permission???
[permission] [int] NOT NULL,
I think you need to look at your character table more carefully.
|
|
|
Similar Threads
|
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server?
post your problem here and you will get answer as fast as possible better than spamming with posts :cool:
first of all try reading Ahmedpotop's Pserver All thing guide.
if your couldn't solve it out post your problem down here
""That includes PHP rankings pages / registrations pages / Status pages""
|
All times are GMT +1. The time now is 16:18.
|
|