viewing paste PmBan rAthena | Athena

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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
/*
|---------------------------------------------------------------|
|                               |
|              GM Support               |
|                PmBan              |
|                               |
|---------------------------------------------------------------|
|              Author(s)                |
| -Nameless2you                         |
|                               |
|---------------------------------------------------------------|
|               Credits             |
|---------------------------------------------------------------|
| -IeYasuru for his Offline Jailing Script          |
|---------------------------------------------------------------|
|               Version             |
|---------------------------------------------------------------|
|                 1.2               |
|---------------------------------------------------------------|
|              Changelog                |
|---------------------------------------------------------------|
| - Added OnWhisperGlobal                   |
| - Added Offline Jailing System                |
| - Added Offline Banning System                |
| - Added Offline Muting System                 |
| - Fixed the Offline Muting System             |
| - Fixed the values                        |
| - Added time muted/jailed into reason             |
| - Fixed some incorrect variables              |
| - Removed a ton of useless loops              |
|---------------------------------------------------------------|
*/
-   script  PmBan   -1,{
OnWhisperGlobal:
    if(@whispervar0$ == "asdf"){
        if(getgroupid() > 80){
                mes "[GM Support]";
                mes "Welcome to the automated NPC dedicated to helping GM's.";
                mes "What would you like to do?";
            switch(select("Ban:Mute:Jail:Nothing")){
            case 1:
                next;
                    mes "[GM Support]";
                    mes "I understand, so you'd like to talk to the Ban Meister.";
                    mes "Hold on please.";
                next;
                    mes "[GM Support]";
                    mes "I understand, so you'd like to talk to the Ban Meister.";
                    mes "Hold on please.";
                    mes "Connection created..";
                next;
                    mes "[GM Support]";
                    mes "I understand, so you'd like to talk to the Ban Meister.";
                    mes "Hold on please.";
                    mes "Connection created..";
                    mes "Establishing uplink...";
                next;
                    mes "[Ban Meister]";
                    mes "Good-day.";
                    mes "How may I help you?";
                    mes "Who would you like to have banned?";
                    mes "And of course, when?";
                next;
                switch(select("Next login:Next WoE"))
                    {
                        case 1:
                            next;
                                mes "[Ban Meister]";
                                mes "Input the name of the person to Ban.";
                            next;
                            input .@name$;
                                mes "[Ban Meister]";
                                mes "How long should this person be Ban?";
                            next;
                            switch(select("Minutes:Hours:Days:Months"))
                            {
                                case 1: set .@type$,"n"; break;
                                case 2: set .@type$,"h"; break;
                                case 3: set .@type$,"d"; break;
                                case 4: set .@type$,"m"; break;
                            }
                                mes "[Ban Meister]";
                                mes "How many of the selected type?";
                            next;
                            input .@time;
                                mes "[Ban Meister]";
                                mes "Now, what reason do you have for banning this person?";
                            next;
                            if(.@type$ == "n") set .@types$,"minute(s)";
                            if(.@type$ == "h") set .@types$,"hour(s)";
                            if(.@type$ == "d") set .@types$,"day(s)";
                            if(.@type$ == "m") set .@types$,"month(s)";
                            input .@reason$;
                                mes "[Ban Meister]";
                                mes "Do you really want to jail "+.@name$+" for "+.@time+""+.@types$+"?";
                            if(select("No:Yes")&1) close;
                            set .@i,getarraysize($Ban$)+1;
                            set $Ban$[.@i],.@name$;
                            set $BanTime$[.@i],.@time + .@type$;
                            set $BanReason$[.@i],.@reason$;
                            mes "Ban on login.";
                            close;
                
                        case 2:
                            next;
                                mes "[Ban Meister]";
                                mes "Who do you want to Ban for the next WoE?";
                            next;
                            input .@name$;
                                mes "[Ban Meister]";
                                mes "How many minute(s) is the next WoE?";
                            next;
                            input .@time;
                            if(.@time <= 0) close;
                                mes "[Ban Meister]";
                                mes "^FF0000"+.@name$+"^000000 will be Banned during the next WoE.";
                            set .@i,getarraysize($WoEBan$)+1;
                            set $WoEBan$[.@i],.@name$;
                            set $WoEBanTime[.@i],.@time;
                            close;
    }
    
            case 2:
                next;
                    mes "[GM Support]";
                    mes "Let me help you with that.";
                next;
                    mes "[GM Support]";
                    mes "Connecting..";
                next;
                    mes "[GM Support]";
                    mes "Connecting..";
                    mes "Connected...";
                next;
                    mes "[Mr. Mute]";
                    mes "When would you like this action to take place?";
                next;
                switch(select("Next login:Next WoE"))
                    {
                        case 1:
                            next;
                                mes "[Mr. Mute]";
                                mes "Input the name of the person to Mute.";
                            next;
                            input .@name$;
                                mes "[Mr. Mute]";
                                mes "How long should this person be Muted?";
                            next;
                            if(select("Minutes:Abort")&2) close;
                                mes "[Mr. Mute]";
                                mes "How many minute(s)?";
                            next;
                            input .@time;
                                mes "[Mr. Mute]";
                                mes "Now, what reason do you have for muting this person?";
                            next;
                            input .@reason$;
                                mes "[Mr. Mute]";
                                mes "Do you really want to Mute "+.@name$+" for "+.@time+" minute(s)?";
                            if(select("No:Yes")&1) close;
                            set .@i,getarraysize($mute$)+1;
                            set $mute$[.@i],.@name$;
                            set $MuteTime[.@i],.@time;
                            set $MuteReason$[.@i],.@reason$;
                                mes "Mute on login.";
                            close;
                
                        case 2:
                                mes "[Mr. Mute]";
                                mes "Who do you want to Mute for the next WoE?";
                            next;
                            input .@name$;
                                mes "[Mr. Mute]";
                                mes "How many minute(s) is the next WoE?";
                            next;
                            input .@time;
                            if(.@time <= 0) close;
                                mes "[Mr. Mute]";
                                mes "^FF0000"+.@name$+"^000000 will be Muted during the next WoE.";
                            set .@i,getarraysize($WoEMute$)+1;
                            set $WoEMute$[.@i],.@name$;
                            set $WoEMuteTime[.@i],.@time;
                            close;
    }
                
        
            case 3:
                next;
                    mes "[GM Support]";
                    mes "Please wait.";
                next;
                    mes "[GM Support]";
                    mes "Please wait.";
                    mes "Connecting..";
                next;
                    mes "[GM Support]";
                    mes "Please wait.";
                    mes "Connecting..";
                    mes "Establishing connection...";
                next;
                    mes "[Jailer]";
                    mes "Good day.";
                    mes "From what I have heard you would like to Jail somebody.";
                    mes "For doing so I will need their name.";
                    mes "Would you like to continue with the Jailing?";
                next;
                switch(select("No.:Yes Please.")){
                next;
                
                case 1:
                    next;
                        mes "[Jailer]";
                        mes "Have a nice day and be sure to come back when you need my help.";
                    close;
                
                case 2:
                    next;
                        mes "[Jailer]";
                        mes "When would you like this jailing to be activated?";
                    switch(select("Next Login:Next WoE")){
                    case 1:
                            mes "Input the name of the person to jail.";
                        next;
                        input .@name$;
                            mes "[Jailer]";
                            mes "How long should this person be jailed?";
                        next;
                        switch(select("Minutes:Hours:Days:Months"))
                        {
                            case 1: set .@type$,"n"; break;
                            case 2: set .@type$,"h"; break;
                            case 3: set .@type$,"d"; break;
                            case 4: set .@type$,"m"; break;
                        }
                            mes "[Jailer]";
                            mes "How many of the selected type?";
                        next;
                        input .@time;
                            mes "[Jailer]";
                            mes "Now, what reason do you have for jailing this person?";
                        next;
                        if(.@type$ == "n") set .@types$,"minute(s)";
                        if(.@type$ == "h") set .@types$,"hour(s)";
                        if(.@type$ == "d") set .@types$,"day(s)";
                        if(.@type$ == "m") set .@types$,"month(s)";
                        input .@reason$;
                            mes "[Jailer]";
                            mes "Do you really want to jail "+.@name$+" for "+.@time+""+.@types$+"?";
                        if(select("No:Yes")&1) close;
                        set .@i,getarraysize($Jailed$)+1;
                        set $Jailed$[.@i],.@name$;
                        set $JailTime$[.@i],.@time+.@type$;
                        set $JailReason$[.@i],.@reason$;
                            mes "Jailed on login.";
                        close;
                    case 2:
                            mes "[Jailer]";
                            mes "Who do you want to jail for the next WoE?";
                        next;
                        input .@name$;
                            mes "[Jailer]";
                            mes "How many minute(s) is the next WoE?";
                        next;
                        input .@time;
                        if(.@time <= 0) close;
                            mes "[Jailer]";
                            mes "^FF0000"+.@name$+"^000000 will be jailed during the next WoE.";
                        set .@i,getarraysize($WoEJailed$)+1;
                        set $WoEJailed$[.@i],.@name$;
                        set $WoEJailedTime[.@i],.@time;
                        close;      
                }
                                            
            }
                close;
        
            case 4:
                next;
                mes "[GM Support]";
                mes "Thank you for visiting, and for allowing me to help you.";
                mes "Bye.";
                close;
                end;
        
            }
        
        }
        
    end;
    }
    
end;
 
 
 
OnPcLoginEvent:
OnPcDieEvent:
// Offline Jailing System
    if(agitcheck() || agitcheck2())
    {
        for(set .@i,0; .@i < getarraysize($WoEJailed$); set .@i,.@+1)
        {
            if(strcharinfo(0) == $WoEJailed$[.@i])
            {
                atcommand "@jailfor "+$WoEJailedTime[.@i]+"n "+$WoEJailed$[.@i];
                dispbottom "You've been jailed for this WoE. It will last for "+$WoEJailedTime[.@i]+" minute(s). but only while you're online.";
                dispbottom "Wait out your sentence and don't complain to the GMs, you were jailed for a reason.";
                set $WoEJailed$[.@i],"";
                set $WoEJailedTime[.@i],"";
                end;
            }
        }
    }
    for(set .@i,0; .@i < getarraysize($Jailed$); set .@i,.@i+1)
    {
        if(strcharinfo(0) == $Jailed$[.@i])
        {
            atcommand "@jailfor "+$JailTime$[.@i]+" "+$Jailed$[.@i];
            dispbottom "@Jailtime for accurate Jail Time info.";
            dispbottom "Jail time: "+$JailTime$[.@i]+".";
            dispbottom "You were jailed for the reason:";
            dispbottom $JailReason$[.@i];
            set $Jailed$[.@i],"";
            set $JailTime$[.@i],"";
            set $JailReason$[.@i],"";
            end;
        }
    }
 
 
// Offline Banning System
    if(agitcheck() || agitcheck2())
    {
        for(set .@i,0; .@i < getarraysize($WoEBan$); set .@i,.@+1)
        {
            if(strcharinfo(0) == $WoEBan$[.@i])
            {
                dispbottom "You've been Banned for this WoE. It will last for "+$WoEBanTime[.@i]+" minute(s).";
                dispbottom "Wait out your sentence and don't complain to the GMs, you were Banned for a reason.";
                sleep2 500;
                atcommand "@ban "+$WoEBanTime[.@i]+"n "+$WoEBan$[.@i];
                set $WoEBan$[.@i],"";
                set $WoEBanTime[.@i],"";
                end;
            }
        }
    }
    for(set .@i,0; .@i < getarraysize($Ban$); set .@i,.@i+1)
    {
        if(strcharinfo(0) == $Ban$[.@i])
        {
            dispbottom "Ban time: "+$BanTime$[.@i]+".";
            dispbottom "You were Banned for the reason:";
            dispbottom $BanReason$[.@i];
            sleep2 500;
            atcommand "@ban "+$BanTime$[.@i]+" "+$Ban$[.@i];
            set $Ban$[.@i],"";
            set $BanTime$[.@i],"";
            set $BanReason$[.@i],"";
            end;
        }
    }
 
// Offline Muting System
    if(agitcheck() || agitcheck2())
    {
        for(set .@i,0; .@i < getarraysize($WoEMute$); set .@i,.@i + 1)
        {
            if(strcharinfo(0) == $WoEMute$[.@i])
            {
                atcommand "@mute "+$WoEMuteTime[.@i]+" "+$WoEMute$[.@i];
                dispbottom "You've been Muted for this WoE. It will last for "+$WoEMuteTime[.@i]+" minute(s). But only while you're online.";
                dispbottom "Wait out your sentence and don't complain to the GMs, you were Muted for a reason.";
                set $WoEMute$[.@i],"";
                set $WoEMuteTime[.@i],"";
                end;
            }
        }
    }
    else
    {
        for(set .@i,0; .@i < getarraysize($mute$); set .@i,.@i + 1)
        {
            if(strcharinfo(0) == $mute$[.@i])
            {
                atcommand "@mute "+$MuteTime[.@i]+" "+$mute$[.@i];
                dispbottom "Mute time: "+$MuteTime[.@i]+" minute(s).";
                dispbottom "You were Muted for the reason:";
                dispbottom $MuteReason$[.@i];
                set $mute$[.@i],"";
                set $MuteTime[.@i],"";
                set $MuteReason$[.@i],"";
                end;
            }
        }
    }
end;
}
Viewed 2486 times, submitted by Streusel.