This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: [SOLVED] Guild name symbols limit  (Read 1466 times)

Sentinel

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
[SOLVED] Guild name symbols limit
« on: September 04, 2013, 10:27:15 pm »
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.
« Last Edit: September 07, 2013, 10:05:05 pm by Admin »

Ascathos

  • Moderators
  • Creator of Worlds
  • *****
  • Posts: 1129
    • View Profile
Re: [QUESTION] Guild name symbols limit
« Reply #1 on: September 04, 2013, 10:40:53 pm »
24 is the limit given for the sql column.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Sentinel

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
[SOLVED] Re: [QUESTION] Guild name symbols limit
« Reply #2 on: September 04, 2013, 11:42:30 pm »
Does it mean i cannot remove limit?

I found this command for MySQL, will it help?
"ALTER TABLE tablename MODIFY columnname VARCHAR(50)"
« Last Edit: September 07, 2013, 10:04:22 pm by Admin »

Ascathos

  • Moderators
  • Creator of Worlds
  • *****
  • Posts: 1129
    • View Profile
Re: [QUESTION] Guild name symbols limit
« Reply #3 on: September 05, 2013, 03:41:15 am »
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)"
Code: [Select]
ALTER TABLE `guild`
CHANGE COLUMN `name` `name` VARCHAR(50) NOT NULL DEFAULT '' AFTER `guildid`;
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Sentinel

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
[SOLVED] Re: [QUESTION] Guild name symbols limit
« Reply #4 on: September 05, 2013, 06:03:33 am »
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)"
Code: [Select]
ALTER TABLE `guild`
CHANGE COLUMN `name` `name` VARCHAR(50) NOT NULL DEFAULT '' AFTER `guildid`;

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!
« Last Edit: January 01, 1970, 01:00:00 am by Admin »