Anyone successfully made a custom rookies guild system? here's mine.
It works but theres a problem, once you're in the guild your char name wont show in guild menu + unable to leave guild.
----- ROOKIES GUILD -----
DECLARE @RegDate varchar(14)SET
@RegDate = CONVERT(VARCHAR(14), GETDATE(), 112) + '000000'
INSERT INTO GuildMember (GuildNo, GuildGrade, CharacterIndex, RegDate, Deleted, GroupIndex, seeOnlineOnly, GuildAxpPoint)
VALUES (1, 0, @CharacterIdx, @RegDate,'',5, 0, 0)
----------------------------
Would be nice if someone share ideas or discuss in this thread
It works but theres a problem, once you're in the guild your char name wont show in guild menu + unable to leave guild.
Quote:
----- ROOKIES GUILD -----
DECLARE @RegDate varchar(14)SET
@RegDate = CONVERT(VARCHAR(14), GETDATE(), 112) + '000000'
INSERT INTO GuildMember (GuildNo, GuildGrade, CharacterIndex, RegDate, Deleted, GroupIndex, seeOnlineOnly, GuildAxpPoint)
VALUES (1, 0, @CharacterIdx, @RegDate,'',5, 0, 0)
----------------------------