Forum > Serverside Modding

[SOLVED] Guild name symbols limit

(1/1)

Sentinel:
Hello, Modcraft.
I have a little problem. When I create a new guild with long name (more than 24-25 symbols) the last symbol of the name is deleted. It looks like server has a limit of symbols for the name of the Guild.
Could you help me: where I can remove this limit?
Thanks. And sorry for my bad English.

Ascathos:
24 is the limit given for the sql column.

Sentinel:
Does it mean i cannot remove limit?

I found this command for MySQL, will it help?
"ALTER TABLE tablename MODIFY columnname VARCHAR(50)"

Ascathos:

--- Quote from: "Sentinel" ---Does it mean i cannot remove limit?

I found this command for MySQL, will it help?
"ALTER TABLE tablename MODIFY columnname VARCHAR(50)"
--- End quote ---

--- Code: ---ALTER TABLE `guild`
CHANGE COLUMN `name` `name` VARCHAR(50) NOT NULL DEFAULT '' AFTER `guildid`;

--- End code ---

Sentinel:

--- Quote from: "Ascathos" ---
--- Quote from: "Sentinel" ---Does it mean i cannot remove limit?

I found this command for MySQL, will it help?
"ALTER TABLE tablename MODIFY columnname VARCHAR(50)"
--- End quote ---

--- Code: ---ALTER TABLE `guild`
CHANGE COLUMN `name` `name` VARCHAR(50) NOT NULL DEFAULT '' AFTER `guildid`;

--- End code ---

--- End quote ---

Inputing this command in MySql consol could solve my problem?
Or this string is the part of *.patch file for the Core?
----
Thanks a lot, my problem has solved!

Navigation

[0] Message Index

Go to full version