Jump to content

DJFUNK

Members
  • Posts

    115
  • Joined

  • Last visited

Everything posted by DJFUNK

  1. Sir, how to include BK6 in NPCs ? like your Botkiller #1 For Eathena V.5.2 such as: I want to put bk6 in my Kafra...
  2. here's - script Sample -1,{ OnPCLoadMapEvent: if( strcharinfo(3) == .Map$ ){ query_sql( "SELECT `last_ip` FROM `login` WHERE account_id="+getcharid(3)+"",.@IP ); query_sql( "SELECT `account_id` FROM `login` WHERE last_ip="+.@IP+"",.@Accountlist ); for( set .@i,0; .@i < getarraysize( .@Accountlist ); set .@i,.@i + 1 ) if( isloggedin( .@Accountlist[.@i] ) ) set .@DetectedOnline,.@DetectedOnline + 1; if( .@DetectedOnline > .Limit ){ mes "We detected there is "+.@DetectedOnline+" Users with same IP Logged in."; mes "Please log off these unused account."; close2; warp "prontera",155,181; } } end; OnInit: // How many User with Same IP can logged in and stay at the specific map set .Limit,2; // What map will be restricted set .Map$,"lighthalzen"; setmapflag .Map$,mf_loadevent; end; } still I can dual login even third login on lighthalzen map.. Im using r16986
  3. I've already use BK6. does it work for my r16986 ?
  4. I have a GoldRoom on my server. and I put the antibot on the NPC that transfer to the GoldRoom. but, botter can easily break that. here's my antibot groom.txt I need antibot like the BotKiller 6 (by Myzter) the Img2Num i think good for this, because its using script command : cutin (that show the NPC illust) here's the file BK6_Img2Num.rar [Credit to Myzter] can anyone make the antibot, that show "cutin" or NPC illust for my GoldRoom? that show 3 image when click the NPC GoldRoom, and input the answer. thank's
  5. Hi Euphy, I use your WOE Controller can it modified to: not actually auto reward to all member guild, but manually reward. Only the Guild Master who uccupy the WOE castle after WOE end, get reward by talking to the NPC. thank's before
  6. As same as the title, is possible? to enable and disable NPC via whisper such I whisp the one of NPC name: npc:healer -> open and NPC Healer will appear. npc:healer -> close and NPC Healer will disappear.
  7. Dear Emistry I've used your misc script "Restrict same IP (certain map)" and it doesnt work.. I've set : // How many User with Same IP can logged in and stay at the specific map set .Limit,2; // What map will be restricted set .Map$,"lighthalzen"; but, still I can dual login even third login on lighthalzen map..
  8. DJFUNK

    Track IP

    DONE... it's work.. only that changes? to use in rAthena
  9. DJFUNK

    Track IP

    how can I use that? hhm... I think the NPC that I can input the ID or Char name, and track their IP. just like this gmassistant.txt it doesn't work for rAthena.. /spin how I can use it
  10. DJFUNK

    Track IP

    I need the NPC script for track IP for my player as GM tool in game (include the features that player's same IP,etc...) so I can use it in game nor in gameCP
  11. hi please help me to modify this script to manually antibot for players I can use this manually antibot with using the NPC or whisp to that NPC, here: // random passcode mes "Enter Password:"; mes "^0000FF " + .@string$ + "^000000"; input .@input$; if (.@input$ != .@string$) { mes "^FF0000 Wrong Pasword!.^000000"; } else { mes "^008000 Password Correct.^000000"; close2; S_GenerateRandStr: // getarg(0) = type Value is a bit field (1: lowercase, 2: numbers, 4: symbols, 8: UPPERCASE) // getarg(1) = length if (getarg(0) & 1) setarray .@chars$[getarraysize(.@chars$)], "a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"; if (getarg(0) & 2) setarray .@chars$[getarraysize(.@chars$)], "1","2","3","4","5","6","7","8","9","0"; if (getarg(0) & 4) setarray .@chars$[getarraysize(.@chars$)], "!","@","#","$","%","^","&","*","(",")","<",">","?"; if (getarg(0) & 8) setarray .@chars$[getarraysize(.@chars$)], "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"; set .@length, getarg(1); while (.@length) { set .@str$, .@str$ + .@chars$[rand(getarraysize(.@chars$))]; set .@length, .@length -1; } return .@str$; } sorry for my english someone help me
  12. how can i use manual interrogatory to anyone in any moment.
×
×
  • Create New...