Jump to content
  • 0

No dual or multi client in geffen for gpack


chang123

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  1
  • Reputation:   0
  • Joined:  12/04/18
  • Last Seen:  

hi im using latest rathena .. can someone please give me script for anti dual / multi cleint in geffen xD

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   260
  • Joined:  04/25/12
  • Last Seen:  

You can't really block 100% this. Isn't more nice if you just make the guild pack items not trade able?

Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2345
  • Joined:  10/28/11
  • Last Seen:  

you can try something like this.

-	script	sample	-1,{
	OnInit:
		.map$ = "geffen";
		setmapflag .map$, mf_loadevent;
		end;
		
	OnPCLoadMapEvent:
		if (strcharinfo(3) == .map$) {
			.@size = query_sql("SELECT c.`account_id` FROM `char` c INNER JOIN `login` acc ON acc.`account_id` = c.`account_id` WHERE c.`account_id` <> "+getcharid(3)+" AND c.`online` = 1 AND acc.`last_ip` = '"+getcharip()+"'", .@aid);
			.@cid = getcharid(0);
			for (.@i = 0; .@i < .@size; .@i++)
				if (attachrid(.@aid)) {
					if (strcharinfo(3) == .map$) {
						.@count++;
						if (.@count >= 2) {
							warp "SavePoint", 0, 0, .@cid;
							end;
						}
					}
				}
		}
		end;
}

you should just disable dual client feature when diff the client.

and implement client hash checking to avoid other using custom hexed client to bypass that.

-- seem like i read wrong the topic contents

Edited by Emistry
Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  191
  • Reputation:   24
  • Joined:  07/19/14
  • Last Seen:  

i create my own script to detect all dual.. i dont want to share on comment section.. if you are interested message me..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...