Go Back   RunUO - Ultima Online Emulation > RunUO > RunUO Post Archive > Custom Script Release Archive

Custom Script Release Archive This is a pre-script database archive of what our users had released.

 
 
Thread Tools Display Modes
Old 10-17-2005, 09:51 PM   #26 (permalink)
Forum Novice
 
Join Date: May 2005
Age: 37
Posts: 175
Default

That worked perfect Thank you very much. I didnt expect that, figured I better ask on another forum in fear of .... well you know Thanks
PoolMan is offline  
Old 10-18-2005, 04:04 PM   #27 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default kaysha not working

Love quests, but I am also having the problem with kaysha. She doesn't have the talk option when you click on her, and saying hail doesn't do anything. I tried redownloading it 5 mins ago, and it didn't do anything.
The Akara is the same way...no talk and hail does not work.

The .npc files are in xmlquestnpcs folder

Is this the fix for that or something else

Quote:
the problem with this script is here


Code:
if (e.Speech[0] == prefixes[i]) {
It needs to check to make sure that e.Speech has a non-zero length before trying to index into it.

Change it to


Code:
if (e.Speech.Length > 0 && e.Speech[0] == prefixes[i]) {
any ideas?
The Noob is offline  
Old 10-18-2005, 04:33 PM   #28 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by The Noob
Love quests, but I am also having the problem with kaysha. She doesn't have the talk option when you click on her, and saying hail doesn't do anything. I tried redownloading it 5 mins ago, and it didn't do anything.
The Akara is the same way...no talk and hail does not work.

The .npc files are in xmlquestnpcs folder

Is this the fix for that or something else



any ideas?
that fix was for some other custom script that they had installed. Make sure that you put your .npc files in a folder named "xmlquestnpc", not "xmlquestnpcs" and that the folder is in the main RunUO installation directory.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-18-2005, 07:08 PM   #29 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

ok...just making sure that wasn't the fix I was looking for.

I do have the .npc files in my xmlquestnpc folder, the s on the end was a typo.

restarted shard to see if I had changed anything in trying to figure it out that would let me talk, but still nothing

any more ideas?

Thanks
The Noob is offline  
Old 10-18-2005, 08:16 PM   #30 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by The Noob
ok...just making sure that wasn't the fix I was looking for.

I do have the .npc files in my xmlquestnpc folder, the s on the end was a typo.

restarted shard to see if I had changed anything in trying to figure it out that would let me talk, but still nothing

any more ideas?

Thanks
I'm guessing that you are trying it as staff. You need to be a player. You can use the staffcloak that is included with the xmlspawner package to quickly change your accesslevel to player and back.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-18-2005, 08:23 PM   #31 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

actually, I had tried that with no results either.

trying again now that I know it might be a problem, with no luck

I also had two of my players try it, and they could not get any results either.

Thanks for your help, I greatly appreciate it.
The Noob is offline  
Old 10-18-2005, 08:27 PM   #32 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by The Noob
actually, I had tried that with no results either.

trying again now that I know it might be a problem, with no luck

I also had two of my players try it, and they could not get any results either.

Thanks for your help, I greatly appreciate it.
Try putting the .npc files directly in the main RunUO installation directory (that is the other default location that is searched), and reload the xml quest file ([xmlload filename)
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-18-2005, 08:45 PM   #33 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

I left it in both spots for a try and then in the main runuo directory for another try....no luck

Thanks for the help
The Noob is offline  
Old 10-18-2005, 08:55 PM   #34 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by The Noob
I left it in both spots for a try and then in the main runuo directory for another try....no luck

Thanks for the help
try going to the first spawner #1 and manually respawn it. Does Kashya spawn as blessed and facing south?
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-18-2005, 08:58 PM   #35 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

yes, but I think I found the reason

when I go into the spawner it says "talktext: property not found"

how might I go about fixing this if it's the problem?
The Noob is offline  
Old 10-18-2005, 09:01 PM   #36 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by The Noob
yes, but I think I found the reason

when I go into the spawner it says "talktext: property not found"

how might I go about fixing this if it's the problem?
hehe. ah, ok that's it. You need to get the latest version of the xmlspawner package. You have old versions of the xmlquestnpcs that dont have context menu support added in.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-18-2005, 09:02 PM   #37 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

ok ill try that and let you know what happens
The Noob is offline  
Old 10-18-2005, 09:10 PM   #38 (permalink)
Newbie
 
Join Date: Nov 2004
Age: 21
Posts: 86
Default

It worked!

Thanks so much for your help, and awesome spawner by the way
The Noob is offline  
Old 10-19-2005, 12:17 AM   #39 (permalink)
Forum Novice
 
Join Date: Jan 2005
Location: Northern Michigan
Age: 45
Posts: 357
Send a message via ICQ to Liam Send a message via MSN to Liam
Default

Quote:
Quest Number 1: Sister's Burial Grounds
Location of NPC: Cove Gates
Objective: Find and kill Blood Raven.
More Info: This quest is pretty simple, it doesn't take very long to do (maybe 10 mins max) and was my first attempt at making an XML quest. First part of the quest asks you to actually find the cemetary that Blood Raven is haunting, this is easy to find because it is just to the East of Cove. Blood Raven is just a beefed up red hued brigand and it doesn't take much to bring her down. Once you've killed her take her head back to Kashya in Cove and she will reward you. This quest can be done once every 24 hours.

Have Fun .

Thank you for the quests.

After killing Blood Raven countless times it still shows up that I have 1 left to kill in the book. I give the head to Kaysha but receive no reward. Out of the three items in the book, 2 are complete (find the graveyard, give head to Kaysha) but the one item of killing Kaysha remains incomplete. Suggestions?

Also, what does the collect button do?

Thanks again!
Liam is offline  
Old 10-19-2005, 01:32 AM   #40 (permalink)
Account Terminated
 
Join Date: Sep 2004
Location: westvirginia
Age: 31
Posts: 534
Send a message via AIM to masternightmage Send a message via MSN to masternightmage Send a message via Yahoo to masternightmage
Default

i tryed to start the quest and all that is said is hail and no gump or healer not talking or anythng i know files are in right place so what is up? this is for denofevil!

same thing hapens with the sistersburialgrounds quest? so what is wrong?
masternightmage is offline  
Old 10-19-2005, 01:44 AM   #41 (permalink)
Forum Expert
 
LordHogFred's Avatar
 
Join Date: Jan 2004
Location: UK, Essex
Age: 21
Posts: 1,252
Default

Quote:
Originally Posted by masternightmage
i tryed to start the quest and all that is said is hail and no gump or healer not talking or anythng i know files are in right place so what is up? this is for denofevil!

same thing hapens with the sistersburialgrounds quest? so what is wrong?
You using your staff character? It will only trigger for characters with player access level.
__________________
It is not the hand that creates worlds,
It is the mind controlling it !

The New Dawn Network
LordHogFred is offline  
Old 10-19-2005, 04:50 AM   #42 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by Liam
Thank you for the quests.

After killing Blood Raven countless times it still shows up that I have 1 left to kill in the book. I give the head to Kaysha but receive no reward. Out of the three items in the book, 2 are complete (find the graveyard, give head to Kaysha) but the one item of killing Kaysha remains incomplete. Suggestions?

Also, what does the collect button do?

Thanks again!
you probably didnt go through the xmlspawner installation step 2, which is required in order for the KILL type quest objectives to work.

The collect button is used for COLLECT type quest objectives.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
Old 10-19-2005, 07:16 AM   #43 (permalink)
Forum Novice
 
Join Date: Jan 2005
Location: Northern Michigan
Age: 45
Posts: 357
Send a message via ICQ to Liam Send a message via MSN to Liam
Default

Quote:
Originally Posted by ArteGordon
you probably didnt go through the xmlspawner installation step 2, which is required in order for the KILL type quest objectives to work.

The collect button is used for COLLECT type quest objectives.
Hi Arte,

Hmm, I guess I better check on that.

Somehow, and I really don't remember what happened, she gave me the reward. It was as if I was just walking by her and the reward was given to me. I wasn't speaking to her, and didn't have her gump up. Not sure what happened but am going to try to repeat it tonight. Was strange.

Thanks for the reply Arte!
Liam is offline  
Old 10-19-2005, 08:10 AM   #44 (permalink)
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by Liam
Hi Arte,

Hmm, I guess I better check on that.

Somehow, and I really don't remember what happened, she gave me the reward. It was as if I was just walking by her and the reward was given to me. I wasn't speaking to her, and didn't have her gump up. Not sure what happened but am going to try to repeat it tonight. Was strange.

Thanks for the reply Arte!
The way the quest is set up, if you get her head and return to Kashya, that is enough to receive the reward. The reward spawner only checks to see that you have the last objective completed and are close to Kashya. The gump should just come up to inform you of completing it. You dont actually have to respond to get reward.

(edit)
note, if you wanted to add a speech requirement, you could just set the SpeechTrigger property on the reward spawner #4 to 'hail'. That way you would have to both have the head, be next to her, and either say 'hail' , or activate the Talk context menu option (that will say 'hail' for you), in order to trigger the reward.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline  
 

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5