[CD3.55] problem npc

Patan

LOMCN Veteran
Veteran
Mar 31, 2005
254
40
75
u need to find this npc in envir folder. i think its in mud3/envir/.... Merchant. there are some text files of the most npc who all tell the same (each weaponshop tells this whats in Blacksmith.txt e.g.) if its a single npc and just one ingame ist another folder.

try to search the npc in ur envir folders, the script are called of the function from npc (Blacksmith, Grocery, Portions) and not names of npc
open txt file and translate it =)
 
Upvote 0

maly

Dedicated Member
Dedicated Member
Aug 7, 2006
119
2
65
Nederland
[@Main]
#ACT
HLSCRIPTCMD SERVERTOP
#SAY
Server Rankings\\
<[ All Top 10 ]/@AllLevels>\
<[ Top 10 Warrior ]/@WarriorLevels>\
<[ Top 10 Taoist ]/@TaoistLevels>\
<[ Top 10 Wizard ]/@WizardLevels>\
<[ Top 10 Rich Peeps ]/@TopRich>\\
<[ Exit ]/@exit>\\\
[@AllLevels]
#SAY
<$SERVERTOPALLLEVEL>\\
<[ Exit ]/@exit>\\\
[@TaoistLevels]
#SAY
<$SERVERTOPLEVEL2>\\
<[ Exit ]/@exit>\\\
[@WarriorLevels]
#SAY
<$SERVERTOPLEVEL0>\\
<[ Exit ]/@exit>\\\
[@WizardLevels]
#SAY
<$SERVERTOPLEVEL1>\\
<[ Exit ]/@exit>\\\
[@TopRich]
#SAY
<$SERVERTOPGOLD>\\
<[ Exit ]/@exit>\\\

no :D
 
Upvote 0

Patan

LOMCN Veteran
Veteran
Mar 31, 2005
254
40
75
Server Rankings\\
<[ All Top 10 ]/@AllLevels>\
<[ Top 10 Warrior ]/@WarriorLevels>\
<[ Top 10 Taoist ]/@TaoistLevels>\
<[ Top 10 Wizard ]/@WizardLevels>\
<[ Top 10 Rich Peeps ]/@TopRich>\\
<[ Exit ]/@exit>\\\


this should be clickeble...

if i am not complete false ur npc should say this:


Server Rankings
All Top 10
Top 10 Warrior
Top 10 Wizard
Top 10 Rich Peeps
Exit


so its wrong script or script is wrong connected,

e.g. [@Main]

look C:\Mud3\Envir\Market_Def\Bichon

theresa txt. (PLayerrankins) and inside it something like this

[@Main]
#CALL [Merchant\Common\Accessory.txt] @AccessoryMain


so check that your [@Main] is called right e.g. [@PlayerrankingMAIN]


[@PlayerrankingMAIN]

#ACT
HLSCRIPTCMD SERVERTOP
#SAY
Server Rankings\\
<[ All Top 10 ]/@AllLevels>\
<[ Top 10 Warrior ]/@WarriorLevels>\
<[ Top 10 Taoist ]/@TaoistLevels>\
<[ Top 10 Wizard ]/@WizardLevels>\
<[ Top 10 Rich Peeps ]/@TopRich>\\
<[ Exit ]/@exit>\\\
[@AllLevels]
#SAY
<$SERVERTOPALLLEVEL>\\
<[ Exit ]/@exit>\\\
[@TaoistLevels]
#SAY
<$SERVERTOPLEVEL2>\\
<[ Exit ]/@exit>\\\
[@WarriorLevels]
#SAY
<$SERVERTOPLEVEL0>\\
<[ Exit ]/@exit>\\\
[@WizardLevels]
#SAY
<$SERVERTOPLEVEL1>\\
<[ Exit ]/@exit>\\\
[@TopRich]
#SAY
<$SERVERTOPGOLD>\\
<[ Exit ]/@exit>\\\



PS: the folders are mine path and its king version, dunno if its same as urs



 
Upvote 0

dagras

LOMCN Veteran
Veteran
Feb 6, 2011
282
3
44
look in merchant for the name of the npc.and locate the file name,check in both market_def and covert_def for the npc.

for example in merchant.txt on my server i have:

25EventMaster 0 160 226 (EventCoordinator)_Joseph 0 61


so look in envir folder for file 25eventmaster.txt
then in there add this script

;;不要删掉此行
[@MAIN]
#Say
_Greetings Friend, My Name is Joseph\
<Tell me about the best/@Top10>\
<Exit/@exit>\\


[@top10]
#ACT
HLSCRIPTCMD SERVERTOP ;This Refreshes the List
#SAY
Server Rankings\\
<[ All Top 10 ]/@AllLevels>\
<[ Top 10 Warrior ]/@WarriorLevels>\
<[ Top 10 Taoist ]/@TaoistLevels>\
<[ Top 10 Wizard ]/@WizardLevels>\
<[ Top 10 Rich Peeps ]/@TopRich>\
<[ Exit ]/@exit>\\
[@AllLevels]
#SAY
<$SERVERTOPALLLEVEL>\\
<[ Exit ]/@exit>\\
[@TaoistLevels]
#SAY
<$SERVERTOPLEVEL2>\\
<[ Exit ]/@exit>\\
[@WarriorLevels]
#SAY
<$SERVERTOPLEVEL0>\\
<[ Exit ]/@exit>\\
[@WizardLevels]
#SAY
<$SERVERTOPLEVEL1>\\
<[ Exit ]/@exit>\\
[@TopRich]
#SAY
<$SERVERTOPGOLD>\\
<[ Exit ]/@exit>\\

and it will work
 
Upvote 0

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
Grrr...

To translate.. open your CruelDragon3G.ini

Edit these lines

Holley_msg79=No.{FCOLOR/10}%-2d{FCOLOR/12}:{FCOLOR/14}%-20s{FCOLOR/12} Rejuvenate:{FCOLOR/1}%d{FCOLOR/12}\
Holley_msg80=No.{FCOLOR/10}%-2d{FCOLOR/12}:{FCOLOR/14}%-20s{FCOLOR/12} Gold:{FCOLOR/1}%d{FCOLOR/12}\
Holley_msg81=No.{FCOLOR/10}%-2d{FCOLOR/12}:{FCOLOR/14}%-20s{FCOLOR/12} Level :{FCOLOR/1}%d{FCOLOR/12}\

This is Sting's... as are the scripts above by the looks of them.

---------- Post Merged at 06:41 PM ---------- Previous Post was at 06:30 PM ----------

Also, should be in NPC Script Help
 
Last edited:
Upvote 0