Jump to content
  • 0

New Player Auto Quest?


rakuzas

Question


  • Group:  Members
  • Topic Count:  152
  • Topics Per Day:  0.03
  • Content Count:  459
  • Reputation:   7
  • Joined:  06/29/12
  • Last Seen:  

Hello,

 

Some of my player keep asking me to make this kind quest.. I dont know is it possible or not.. But i think it impossible but they keep ask me.. So here i am..

 

OK.. This npc works like this..

 

 

- Player will create account

- After player start play this new character in new account, the NPC will talk to this player automatically and player will give option to do the Newbie Quest or ignore it..

- And, if player pick to do it, player will talk to certain NPC like we set to get rewards,, Then talk again to the quest npc to talk to other npc to get rewards..

 

And my question is, is it possible or not? If possible.. Can someone give me the basic or make it? /thx

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  44
  • Topics Per Day:  0.01
  • Content Count:  226
  • Reputation:   11
  • Joined:  01/09/12
  • Last Seen:  

Newbie ground?

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   616
  • Joined:  07/05/12
  • Last Seen:  

Template sample

prontera,150,180,5	script	your newbienpc	56,{
	// your newbie reward
	...
	mes "wanna do the newbie quest?";
	next;
	if ( select( "yes", "no" ) -1 ) end;
	// your newbie quest
}

like this?

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  318
  • Reputation:   54
  • Joined:  12/23/12
  • Last Seen:  

 After player start play this new character in new account, the NPC will talk to this player automatically and player will give option to do the Newbie Quest or ignore it..

 

prontera,150,180,5	script	your newbienpc	56,{

OnPCLoginEvent:
if(!#oldplayer)
{
	mes "wanna do the newbie quest?";
	next;
	if ( select( "yes", "no" ) -1 ) end;
	// your newbie quest
        set #oldplayer,1;
}
}
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  152
  • Topics Per Day:  0.03
  • Content Count:  459
  • Reputation:   7
  • Joined:  06/29/12
  • Last Seen:  

 

 After player start play this new character in new account, the NPC will talk to this player automatically and player will give option to do the Newbie Quest or ignore it..

 

prontera,150,180,5	script	your newbienpc	56,{

OnPCLoginEvent:
if(!#oldplayer)
{
	mes "wanna do the newbie quest?";
	next;
	if ( select( "yes", "no" ) -1 ) end;
	// your newbie quest
        set #oldplayer,1;
}
}

 

Hmmm.. I copy paste this script.. When we near the NPC.. Its working.. But, if we far from NPC like that NPC in Prontera, and we at Geffen, we will stuck after click next.. I test and wait about 1-2 mins for that YES or NO appear.. But.. If we near with that NPC.. We will get instant response.. Hmm...

 

BTW, i got this at console.. 

 

Untitled.png

Edited by rakuzas
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   616
  • Joined:  07/05/12
  • Last Seen:  

prontera,150,180,5	script	your newbienpc	56,{

if(!#oldplayer)
{
	mes "wanna do the newbie quest?";
	next;
	if ( select( "yes", "no" ) -1 ) end;
	// your newbie quest
        set #oldplayer,1;
}
}
-	script	dummy	-,{
OnPCLoginEvent:
	if(!#oldplayer) {
		mes "wanna do the newbie quest?";
		next;
		if ( select( "yes", "no" ) -1 ) end;
		// your newbie quest
			set #oldplayer,1;
	}
}

split the npc

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