Jump to content
  • 0

New Player Auto Quest?


Question

Posted

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

6 answers to this question

Recommended Posts

Posted

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
Posted
 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
Posted (edited)

 

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...