sizenine Posted March 3, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Share Posted March 3, 2012 (edited) i tried using /organize "ha ha ha" but it would say invalid name. is there an option to allow spaces in party names again? it also happens when im trying to make a guild. Edited March 3, 2012 by sizenine Quote Link to comment Share on other sites More sharing options...
Nipsino Posted March 3, 2012 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 218 Reputation: 16 Joined: 01/24/12 Last Seen: May 24, 2015 Share Posted March 3, 2012 Are you sure you're doing it correct? It should work.. /organize "Party Name" I'll look into this in a bit. Could you tell me what revision you're on? Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 3, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Yesterday at 05:32 PM Share Posted March 3, 2012 i think that double quotation mark is disabled in new client.... because kro already removed it 2 Quote Link to comment Share on other sites More sharing options...
sizenine Posted March 3, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Author Share Posted March 3, 2012 i think that double quotation mark is disabled in new client.... because kro already removed it Yeah, that's what I was thinking. I'm on r15627, client 2012-02-07 Quote Link to comment Share on other sites More sharing options...
Arcenciel Posted March 5, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 1315 Reputation: 372 Joined: 12/10/11 Last Seen: August 31, 2013 Share Posted March 5, 2012 Just undo whatever was changed in the revision this was applied. Quote Link to comment Share on other sites More sharing options...
sizenine Posted March 5, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Author Share Posted March 5, 2012 not sure which changeset that is, couldn't search it in trac. Quote Link to comment Share on other sites More sharing options...
Earthlingz Posted March 5, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 187 Reputation: 35 Joined: 01/01/12 Last Seen: September 20, 2014 Share Posted March 5, 2012 that is client side, nothing to do with server. Quote Link to comment Share on other sites More sharing options...
sizenine Posted March 8, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Author Share Posted March 8, 2012 how do we get rid of it client side then? Quote Link to comment Share on other sites More sharing options...
Earthlingz Posted March 8, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 187 Reputation: 35 Joined: 01/01/12 Last Seen: September 20, 2014 Share Posted March 8, 2012 only way is to wait for a diff to come like the restore login window... so it is likely be named as enable quotes on guild and organize command. Quote Link to comment Share on other sites More sharing options...
Conflicts Posted March 9, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 317 Reputation: 63 Joined: 11/13/11 Last Seen: March 23 Share Posted March 9, 2012 For the meantime you can use @guild / @party. They still work as intended, but there is 1 drawback. Disbanding a guild would be somewhat impossible, not unless someone decides to make a "@breakguild" mod too. Quote Link to comment Share on other sites More sharing options...
sizenine Posted March 9, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Author Share Posted March 9, 2012 Yeah but @guild would skip the emperium requirement also Quote Link to comment Share on other sites More sharing options...
Conflicts Posted March 9, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 317 Reputation: 63 Joined: 11/13/11 Last Seen: March 23 Share Posted March 9, 2012 You can bind it with ToastOfDoom's Atcommand Events and make the script check for Emperium. 1 Quote Link to comment Share on other sites More sharing options...
JayPee Posted March 9, 2012 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 633 Reputation: 78 Joined: 11/14/11 Last Seen: September 20, 2017 Share Posted March 9, 2012 Here is the breakguild command: @guildbreak - only the game master can break the guild find: ACMD_FUNC(guild) add the code below the function ACMD_FUNC(guildbreak) { struct guild *g; nullpo_retr(-1,sd); g=guild_search(sd->status.guild_id); if(g==NULL) { clif_displaymessage(fd, "You dont have a guild."); return -1; } if (strcmp(g->master, sd->status.name) != 0) { clif_displaymessage(fd, "Only the guild master can break this guild."); return -1; } //Verified that the player is the guild master. guild_broken(g->guild_id,0); return 0; } The result looks like this: ACMD_FUNC(guild) { char guild[NAME_LENGTH]; int prev; nullpo_retr(-1, sd); memset(guild, '0', sizeof(guild)); if (!message || !*message || sscanf(message, "%23[^n]", guild) < 1) { clif_displaymessage(fd, "Please, enter a guild name (usage: @guild <guild_name>)."); return -1; } prev = battle_config.guild_emperium_check; battle_config.guild_emperium_check = 0; guild_create(sd, guild); battle_config.guild_emperium_check = prev; return 0; } ACMD_FUNC(guildbreak) { struct guild *g; nullpo_retr(-1,sd); g=guild_search(sd->status.guild_id); if(g==NULL) { clif_displaymessage(fd, "You dont have a guild."); return -1; } if (strcmp(g->master, sd->status.name) != 0) { clif_displaymessage(fd, "Only the guild master can break this guild."); return -1; } //Verified that the player is the guild master. guild_broken(g->guild_id,0); return 0; } then now find: ACMD_DEF(guild), add below: ACMD_DEF(guildbreak),//JayPee The result looks like this: ACMD_DEF(guild), ACMD_DEF(guildbreak),//JayPee Now recompile your server. 1 Quote Link to comment Share on other sites More sharing options...
sizenine Posted March 21, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Author Share Posted March 21, 2012 i noticed a bug with your @guildbreak command. when you use the @guildbreak, the guild does not get deleted from the database. with the regular /breakguild, it gets deleted immediately and you can remake the same guild name right away. Quote Link to comment Share on other sites More sharing options...
Question
sizenine
i tried using /organize "ha ha ha" but it would say invalid name. is there an option to allow spaces in party names again?
it also happens when im trying to make a guild.
Edited by sizenineLink to comment
Share on other sites
13 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.