Search the Community
Showing results for tags 'party'.
Found 5 results
-
Sorry for always asking many questions. Is it possible to restrict certain party names from being made? E.g. if a player tries to make a party called "My Party" through @party or /organize it will always be rejected (even if this party doesn't exist). Thanks
-
Hello, I created this buildin which invites char id 2 to char id 1's party (CID1 must be online). It sends char id 2 an invite as if char id 1 clicked their name and invited them. What I want to know - is it possible to force join a character to a party without giving them the option to accept or decline? Thanks. /* *party_invite(<char id 1>, <char id 2>) Invites Char ID 2 to the party owned by Char ID 1. Char ID 1 must be online. Returns true on succession, false on failure. */ BUILDIN(party_invite) { struct map_session_data *sd = script->charid2sd(st, script_getnum(st, 2)); struct map_session_data *t_sd = script->charid2sd(st, script_getnum(st, 3)); if (sd == NULL || t_sd == NULL) return false; if (!script_hasdata(st, 2) && !script_hasdata(st, 2)) { ShowError("Both Char IDs must be supplied."); return true; } if (party->invite(sd, t_sd)) script_pushint(st, 1); else script_pushint(st, 0); return true; }
-
Okay, I added this to my server so when I fakename, party and guild will be shown https://rathena.org/board/topic/60188-fakename-show-guildparty/ Now I couldnt invite any other players who names we faked. Any thoughts? It's saying 'The character is not currently online or does not exist'.
-
Hi How can I change the minimum level required to exp share in a party? Thx ^.^
-
Alguém sabe me dizer como posso alterar o nível mínimo para que seja possível dividir experiência em uma party? Obrigado ^^
- 2 replies
-
- dividir
- experiencia
- (and 7 more)