Jump to content
  • 0

Slave clone online male players


pajodex

Question


  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  436
  • Reputation:   167
  • Joined:  12/12/17
  • Last Seen:  

Hi, 

Is it possible to script that an Npc will summon a slave clone a random online male player to the female character who talked to the npc? 

 

Limit only to one clone per character. Once character is dead, clone needs to be resummoned. 

Edited by pajodex
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  118
  • Reputation:   58
  • Joined:  11/24/16
  • Last Seen:  

7 hours ago, pajodex said:

Also for attack. But only monsters if possible. Evil clones are the ones who attacks players, right? 

here you go

-	script	Clone NPC	-1,{

	if ( slave == 0 ) {
		getmapxy ( .@map$ , .@x , .@y , UNITTYPE_PC );
		.@slaveID = clone ( .@map$, .@x , .@y , "" , getcharid(0), getcharid(0), 0x1089 );
		if ( SEX == SEX_MALE )
			.@sex = SEX_FEMALE; 
		else
			.@sex = SEX_MALE; 
		setunitdata .@slaveID, UMOB_SEX, .@sex;
		slave = 1;
	}
	end;

OnPCDieEvent:
	slave = 0;
	end;
}
prontera,170,195,4	duplicate(Clone NPC)	Clone NPC#pron	894

 

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  118
  • Reputation:   58
  • Joined:  11/24/16
  • Last Seen:  

only slave for follow you?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  436
  • Reputation:   167
  • Joined:  12/12/17
  • Last Seen:  

Also for attack. But only monsters if possible. Evil clones are the ones who attacks players, right? 

Edited by pajodex
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  436
  • Reputation:   167
  • Joined:  12/12/17
  • Last Seen:  

Cool Thanks! :D

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...