viewing paste topic/4593- getmemberaid_1.3 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
//===== Hercules Plugin ======================================
//= *getmemberaid Script Command
//===== By: ==================================================
//= AnnieRuru
//===== Current Version: =====================================
//= 1.3
//===== Compatible With: ===================================== 
//= Hercules 2015-11-13
//===== Description: =========================================
//= *getmemberaid
//= supported TYPES are :-
//= - ALL_CLIENT
//= - ALL_SAMEMAP
//= - AREA
//= - PARTY
//= - GUILD
//= - BG
//= *checkmes
//===== Topic ================================================
//= http://hercules.ws/board/topic/4593-
//===== Additional Comments: =================================  
//= getmemberaid ALL_CLIENT;
//= getmemberaid ALL_SAMEMAP;
//= getmemberaid ALL_SAMEMAP, "<map name>";
//= getmemberaid AREA;
//= getmemberaid AREA, "<map name>", x1, y1, x2, y2;
//= getmemberaid PARTY;
//= getmemberaid PARTY, <party ID>;
//= getmemberaid GUILD;
//= getmemberaid GUILD, <guild ID>;
//= getmemberaid BG;
//= getmemberaid BG, <battleground ID>;
//= checkmes <account_id>;
//============================================================
 
#include "common/hercules.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "map/pc.h"
#include "map/party.h"
#include "map/guild.h"
#include "map/mapreg.h"
#include "map/battleground.h"
#include "common/memmgr.h"
#include "common/HPMDataCheck.h"
 
HPExport struct hplugin_info pinfo = {
    "getmemberaid",     // Plugin name
    SERVER_TYPE_MAP,// Which server types this plugin works with?
    "1.3",          // Plugin version
    HPM_VERSION,    // HPM Version (don't change, macro is automatically updated)
};
 
int buildin_getmemberaid_bl(struct block_list *bl, va_list ap) {
    TBL_PC *sd = BL_CAST( BL_PC, bl );
    int *i = va_arg( ap, int * );
    mapreg->setreg( reference_uid( script->add_str("$@onlineaid"), (*i)++ ), sd->status.account_id );
    return true;
}
 
BUILDIN(getmemberaid) {
    int i = 0, count = 0;
    int16 m, x1, x2, y1, y2;
    switch ( script_getnum(st,2) ) { // type
    case ALL_CLIENT: {
        struct s_mapiterator* iter = mapit_getallusers();
        TBL_PC *sd;
        for ( sd = (TBL_PC*)mapit->first(iter); mapit->exists(iter); sd = (TBL_PC*)mapit->next(iter) )
            mapreg->setreg( reference_uid( script->add_str("$@onlineaid"), i++ ), sd->status.account_id );
        mapit->free(iter);
        mapreg->setreg( script->add_str("$@onlinecount"), i );
        return true;
    }
    case ALL_SAMEMAP: {
        if ( script_hasdata(st,3) ) {
            if ( ( m = map->mapname2mapid( script_getstr(st,3) ) ) < 0 ) {
                ShowError( "buildin_getmemberaid: using type ALL_SAMEMAP but map not found !\n" );
                mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                return false;
            }
        }
        else {
            TBL_PC *sd = script->rid2sd(st);
            if ( !sd ) {
                ShowError( "buildin_getmemberaid: using type ALL_SAMEMAP but no map given and no rid attached !\n" );
                mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                return false;
            }
            m = sd->bl.m;
        }
        count = map->foreachinmap( buildin_getmemberaid_bl, m, BL_PC, &i );
        mapreg->setreg( script->add_str("$@onlinecount"), count );
        return true;
    }
    case AREA: {
        if ( script_hasdata(st,3) ) {
            if ( ( m = map->mapname2mapid( script_getstr(st,3) ) ) < 0 ) {
                ShowError( "buildin_getmemberaid: using type AREA but map not found !\n" );
                mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                return false;
            }
            if ( !script_hasdata(st,4) || !script_hasdata(st,5) || !script_hasdata(st,6) || !script_hasdata(st,7) ) {
                ShowError( "buildin_getmemberaid: using type AREA but not enough arguments given !\n" );
                mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                return false;
            }
            x1 = script_getnum(st,4);
            y1 = script_getnum(st,5);
            x2 = script_getnum(st,6);
            y2 = script_getnum(st,7);
            count = map->foreachinarea( buildin_getmemberaid_bl, m, x1, y1, x2, y2, BL_PC, &i );
            mapreg->setreg( script->add_str("$@onlinecount"), count );
            return true;
        }
        else {
            TBL_PC *sd = script->rid2sd(st);
            if ( !sd ) {
                ShowError( "buildin_getmemberaid: using type AREA but no coordinate given and no rid attached !\n" );
                mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                return false;
            }
            count = map->foreachinrange( buildin_getmemberaid_bl, &sd->bl, battle->bc->area_size, BL_PC, &i );
            mapreg->setreg( script->add_str("$@onlinecount"), count );
            return true;
        }
    }
    case PARTY: {
            struct party_data *p;
            if ( script_hasdata(st,3) ) {
                p = party->search( script_getnum(st,3) );
                if ( !p ) {
                    ShowError( "buildin_getmemberaid: using type PARTY but party ID not found !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
            }
            else {
                TBL_PC *sd = script->rid2sd(st);
                if ( !sd ) {
                    ShowError( "buildin_getmemberaid: using type PARTY but no party ID given and no rid attached !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                if ( sd->status.party_id == 0 ) {
                    ShowError( "buildin_getmemberaid: using type PARTY but RID attached has no party ID !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                p = party->search( sd->status.party_id );
            }
            for ( i = 0; i < MAX_PARTY; i++ )
                if ( p->party.member[i].account_id && p->party.member[i].online )
                    mapreg->setreg( reference_uid( script->add_str("$@onlineaid"), count++ ), p->party.member[i].account_id );
            mapreg->setreg( script->add_str("$@onlinecount"), count );
            return true;
    }
    case GUILD: {
            struct guild *g;
            if ( script_hasdata(st,3) ) {
                g = guild->search( script_getnum(st,3) );
                if ( !g ) {
                    ShowError( "buildin_getmemberaid: using type GUILD but guild ID not found !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
            }
            else {
                TBL_PC *sd = script->rid2sd(st);
                if ( !sd ) {
                    ShowError( "buildin_getmemberaid: using type GUILD but no guild ID given and no rid attached !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                if ( sd->status.guild_id == 0 ) {
                    ShowError( "buildin_getmemberaid: using type GUILD but RID attached has no guild ID !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                g = guild->search( sd->status.guild_id );
            }
            for ( i = 0; i < MAX_GUILD; i++ )
                if ( g->member[i].account_id && g->member[i].online )
                    mapreg->setreg( reference_uid( script->add_str("$@onlineaid"), count++ ), g->member[i].account_id );
            mapreg->setreg( script->add_str("$@onlinecount"), count );
            return true;
    }
    case BG: {
            struct battleground_data *bgd;
            if ( script_hasdata(st,3) ) {
                bgd = bg->team_search( script_getnum(st,3) );
                if ( !bgd ) {
                    ShowError( "buildin_getmemberaid: using type BG but battleground ID not found !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
            }
            else {
                TBL_PC *sd = script->rid2sd(st);
                if ( !sd ) {
                    ShowError( "buildin_getmemberaid: using type BG but no battleground ID given and no rid attached !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                else if ( sd->bg_id == 0 ) {
                    ShowError( "buildin_getmemberaid: using type BG but RID attached has no battleground ID !\n" );
                    mapreg->setreg( script->add_str("$@onlinecount"), 0 );
                    return false;
                }
                bgd = bg->team_search( sd->bg_id );
            }
            for ( i = 0; i < MAX_BG_MEMBERS; i++ )
                if ( bgd->members[i].sd )
                    mapreg->setreg( reference_uid( script->add_str("$@onlineaid"), count++ ), bgd->members[i].sd->bl.id );
            mapreg->setreg( script->add_str("$@onlinecount"), count );
            return true;
    }
    default:
        ShowError( "buildin_getmemberaid: invalid type !\n" );
        mapreg->setreg( script->add_str("$@onlinecount"), 0 );
        return false;
    }
    return true;
}
 
BUILDIN(checkmes) {
    TBL_PC *sd = map->id2sd( script_getnum(st,2) );
    if ( !sd ) {
        script_pushint(st, 0);
        ShowWarning( "buildin_checkmes: invalid player ID or not online !\n" );
        return false;
    }
    script_pushint(st, ( sd->npc_id || sd->npc_shopid )? 1 : 0 );
    return true;
}
 
HPExport void plugin_init (void) {
    addScriptCommand( "getmemberaid", "i?????", getmemberaid );
    addScriptCommand( "checkmes", "i", checkmes );
}
Viewed 1642 times, submitted by AnnieRuru.