Question Menu D!

Josiko

LOMCN Veteran
Veteran
Loyal Member
Apr 4, 2010
428
8
44
Spain
As I can enter the following script in menu d, and this correct the
script? which would have to enter. txt of hasdonated?

[@GroupRecall]
#IF
CheckNameList HasDonated.txt
#SAY
This will instantly recall your whole group to you...
This costs {FCOLOR10}5 Credits{FCOLOR12}
Make sure that you are in the place you want to recall
your group to then click Recall Now
{FCOLOR1}NO RECALL PLAYER KILLING!{FCOLOR12}
Recall Now@Recall_Now
#ELSESAY
To use this function you must have donated...
Leave@Exit

;----------------------------------------------------------------------

[@Recall_Now]
#ACT
Loadvalue D3 QuestDiaryDonations.txt [Credit] %USERNAME
Mov A0 %USERMAP
Mov A1 %USERX
Mov A2 %USERY
#IF
ELarge D3 5
#ACT
Mov D4 5
Dec D3 %D4
SaveValue QuestDiaryDonations.txt [Credit] %USERNAME %D3
FormatStr %s,%s,%s,0 %A0 %A1 %A2
GroupMove %A9 %USERNAME
Close
#ELSESAY
You must have atleast {FCOLOR10}5{FCOLOR12} Credits
Leave@Exit
}


I think this script has an error can be? just where it joins the recall to do with the script, thanks in advance
 

kyeron

LOMCN Veteran
Veteran
Loyal Member
Sep 28, 2008
296
1
45
timisoara
[@GroupRecall]
#IF
CheckNameList HasDonated.txt
#SAY
This will instantly recall your whole group to you...
This costs {FCOLOR10}5 Credits{FCOLOR12}
Make sure that you are in the place you want to recall
your group to then click Recall Now
{FCOLOR1}NO RECALL PLAYER KILLING!{FCOLOR12}
<Recall Now/@Recall_Now>
#ELSESAY
To use this function you must have donated...
Leave@Exit

;----------------------------------------------------------------------

[@Recall_Now]
#ACT
Loadvalue D3 "QuestDiary\Donations.txt" [Credit] %USERNAME
Mov A0 %USERMAP
Mov A1 %USERX
Mov A2 %USERY
#IF
ELarge D3 5
#ACT
Mov D4 5
Dec D3 %D4
SaveValue "QuestDiary\Donations.txt" [Credit] %USERNAME %D3
FormatStr %s,%s,%s,0 %A0 %A1 %A2
GroupMove %A9 %USERNAME
Close
#ELSESAY
You must have atleast {FCOLOR10}5{FCOLOR12} Credits
Leave@Exit
}

u need to add the "red" things to ur script
 
Upvote 0