Marriage npc 2.3

T0MMY

LOMCN Veteran
Veteran
Aug 5, 2007
2,153
24
125
United Kingdom
Anybody got a marriage npc for 2.3 please.

I trying to use the 1.9 one and it does not work.

Thanks
Smeagol
 

Zen2

LOMCN Veteran
Veteran
Jul 26, 2007
1,818
18
125
Does TD`s files not include a marrage npc in the palace? Im sure they do, I could be wrong though if i am i will find the script for you.
 
Upvote 0

jewjewbee

Dedicated Member
Dedicated Member
May 5, 2007
99
2
35
I thought you didn't need an NPC for marriage in TD's files?
All done in user console, no?
 
Upvote 0

T0MMY

LOMCN Veteran
Veteran
Aug 5, 2007
2,153
24
125
United Kingdom
Use the 1.9 files npc. Already done for you and add EngagementRing not WeddingRing. I changed on my server.

Both Characters level 40+
 
Upvote 0

T0MMY

LOMCN Veteran
Veteran
Aug 5, 2007
2,153
24
125
United Kingdom
Code:
[@main]
What do you want to do?\ \
<Propose/@marry>\
<Divorce/@unmarry>\ \
<Close/@exit>

[@marry]
It's a man's job to Propose to his girl friend.\ \
<Agree/@agree> \
<Maybe next time/@exit> \ \ \
<Back/@main>

[@agree]
#if
checkmarry
#act 
break
#say
You are already married!\ \
<Back/@main>

#if
checkposemarry
#say
You are already Married!!\ \
<Back/@main>

#act
break
#if
gender man
#elsesay
Only has male to female proposing.\ \
<Back/@main>

#elseact
break
#if
checkposegender Male
#say
You! Wants to do the homogeneity!\ \
<Back/@main>

#act
break
#if
checkposedir 2
#elsesay
Your two surface surface stand, does not want.\ \
<Back/@main>

#elseact
break
#if
checklevel 7
#elsesay
<Back/@main>

#elseact
break
#if
checkposelevel > 7
#elsesay
<Back/@main>

#elseact
break
#if 
checkitem Engagementring 1
#elsesay
You don't have a Engagement Ring what type of man are you!\ \
<Back/@main>

#elseact
break
#if
#act
take Engagementring 1
marry

[@StartMarry]
#if
checkmarry
#say
You are already Married!!\ \
<Back/@main>

#act
break
#if
gender man
#act
break
#say
Marriage at official beginning.\ \
You are willing to marry this woman?\ \
<I Do!/@RequestMarry>

#if
gender
#act
break
#say
Marriage at official beginning.\ \
waits patiently for you lover to propose to you\ \

[@RequestMarry]
#if
checkmarry
#act
break
#say
You already Married! \ \
<Back/@main>

#if
#act
marry requestmarry

[@WateMarry]
wait patiently for his answer.

[@RevMarry]
#if
checkmarry
#act
break
#say
You are already Married!\ \
<Back/@main>

#if
#say
So do you wont to marry him? \ \
<Yes I do/@ResposeMarry> \
<No thank you!/@ResposeMarryFail>

[@ResposeMarry]
#if
checkmarry
#act
break
#say
You are already Married!\ \
<Back/@main>

#if
#act
marry responsemarry ok

#if
#act
marry responsemarry ok

[@ResposeMarryFail]
#if
checkmarry
#act
break
#say
You are already Married!\ \
<Back/@main>

#if
#act
marry responsemarry Fail

[@EndMarry]
You are now, husbands and wives.\ \
<Closure/@exit>

[@EndMarryFail]
Your partner moved!\ \
<Leave/@exit>

[@MarryDirErr]
Your partner isn't stud infront of you!.

[@MarryCheckDir]
Face your partner\\

[@HumanTypeErr]
Your carn't Marry somthink un-human!

[@MarrySexErr]
Wrong gender Sorry!

Divorce start

[@unmarry]
#if
checkmarry
#act
unmarry
#elsesay
Your arn't married you loser!\ \
<Returns/@main>

[@UnMarryCheckDir]
You arn't Facing your partner which only leaves\
two options..\ \
1: <Forcefull Divorce Please/@fUnMarry> \
2: <Speak With My Partner/@main>

[@UnMarryTypeErr]
Your Partner Dosn't wont a Divorce.\ \
<Back/@main>

[@StartUnMarry]
#if
gender man
#act
BREAK
#say
You realy should think about what your gonna do?\
Are you sure you wont a <Divorce/@RequestUnMarry>

#if
gender
#say
Your husband now requests a divorce. DO you agree? \ \
<Yes/@RequestUnMarry> or <No/@Exit>
#act
break

[@RequestUnMarry]
#if
checkmarry
#act
unmarry requestunmarry

[@ResposeUnMarry]
#if
checkmarry
#act
unmarry Responseunmarry

[@WateUnMarry]
You have sent out the divorce request to opposite party\
you will have to wait for opposite party answer.\

[@RevUnMarry]
Forceing a divorces comes with a price. The fee is 1000000! \ \
<Continue/@RequestUnMarry> <Back/@main>

[@ExeMarryFail]
Arn't you all married? \ \
<Back/@main>

[@fUnMarry]
#if
checkGold 1000000
checkmarry
#act
take Gold 1000000
unmarry requestunmarry Force
#elsesay
It will cost you 1000000 in gold in fee's for this\
Divorce, which you don't have so go away <Sorry/@exit>\

[@UnMarryEnd]
Ha-ha, you already were separated from sea of bitterness! ! ! \ \
<Withdrawal/@exit>

EngagementRing Required and Level 7 Both Charcters.
 
  • Like
Reactions: StevieLCFC
Upvote 0