|
|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
| Development::Development Forum for development topics and for those interested in EQEMu development. (Not a support forum) |
 |
|
 |

10-02-2008, 01:31 AM
|
 |
Developer
|
|
Join Date: Mar 2003
Posts: 1,500
|
|
Display messages
Odd text display. Here is what I am talking about. Please look at this task with your previous and new revisions. You'll notice the text gets cut short also.
SQL Code:
Code:
INSERT INTO tasks VALUES(13, 0, 'They\'re a Bit Short','[1, They might as well call you a scout, because you\'ll be going out and doing some scouting on some very high-profile sites. These sites are rumored to be burial grounds for priests of an ancient civilization, but there is not much information on them than that. Enough delay, get going and explore the single dwarven hut along the path in the north.][2, If your findings are correct, there\'s nothing around there that even remotely suggests an ancient burial ground. It\'s unfortunate, but there\'s one more spot you need to check before we give up all hope. Go ahead and explore the large rock tower on goblin isle. Be careful, if there is a burial ground, there\'s no telling what kind of creatures lurk nearby.][3, It\'s unfortunate that you weren\'t able to find any remnants at all. Perhaps there will be more to find next time. In the meantime, you need to report your findings, so speak with Tarerd Gahar. That is all.]','Money and Experience', 0, 1433, 2000, 0, 68, 1);
INSERT INTO activities VALUES (13, 0, 0, 5, 'the dwarven hut', '', '', 1, 0, 1, 0, 68, 0);
INSERT INTO activities VALUES (13, 1, 1, 5, 'the large rock tower', '', '', 1, 0, 1, 0, 69, 0);
INSERT INTO activities VALUES (13, 2, 2, 4, '', '', 'Speak with Tarerd Gahar', 0, 2, 1, 0, 202, 0);
INSERT INTO proximities VALUES (68, 1, 390, 410, 2060, 2080, -10, 10);
INSERT INTO proximities VALUES (69, 1, -8515, -8455, -1260, -1200, 20, 70);
butcher\Gibi_Bilgum.pl:
Code:
#BeginFile: butcher\Gibi_Bilgum.pl (68090)
#Quest file for Butcherblock Mountains - Gibi Bilgum: They're a Bit Short
sub EVENT_SAY {
if($text=~/hail/i) {
quest::say("Get a load of my sister over yonder. She doesn't know when to give up the swashbuckling. Idiocy is more like it. She's not the only one around here with some [tasks] that need... well, tasking. You might say I'm a taskmaster, only without the whip. I'm not sure how to even use a whip though, so maybe it's for the best.");
}
if($text=~/tasks/i) {
if($ulevel >= 12) {
if(quest::istaskactive(13)) {
quest::say("They're a Bit Short is already in progress.");
}
else {
quest::taskselector(13); #Task: They're a Bit Short
}
}
else {
quest::say("I don't have any tasks suitable to one of your experience.");
}
}
}
sub EVENT_ITEM {
quest::say("I have no use for this, $name.");
plugin::return_items(\%itemcount);
}
#EndFile: butcher\Gibi_Bilgum.pl (68090)
poknowledge\#Tarerd_Gahar.pl:
Code:
#Tarerd_Gahar.pl
#The Magic Pool
sub EVENT_SAY {
if($text=~/hail/i) {
if(quest::istaskactivityactive(13,2)) {
quest::say("Thanks for contacting me, $name. Your information on this matter has been most useful.");
$client->Message(7,"The ideal of burial grounds nearby is one that can not be easily overlooked. That's exactly why you were sent to check these areas out. Sadly none of them turned out to be the rumored burial grounds, but there's plenty more land to cover, so you maybe called upon again. You'll be recieving some payment, mostly for your time investment, but partially for the danger involved. Good job.");
quest::updatetaskactivity(13,2);
}
else {
quest::say("I'm sorry, I have neither the time nor the patience to chat right now.");
}
}
if($text=~/pool/i) {
quest::say("Oh Tatlan and Wicas sent you did they? I'll tell you what I told them, nothing is free. If you want to know about the pools then I need something [from you] first.");
}
if($text=~/from me/i) {
quest::say("I'm sure it'll be easy for an adventurer as you. I am working on a potion, and I cannot currently travel to gather my last component. If you could bring me the blood of a Sarnak I'd be willing to share what I know.");
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount, 22519 => 1)) { #Sarnak Blood
quest::say("Ahh this is exactly what I was looking for. All the information I've gathered from these pools has come from Myrist. Thiran will give you the book I used as a reference. Give him this note so he knows I sent you.");
quest::summonitem(15958); #Note From Tarerd
}
else {
quest::say("I don't need this."); #text made up
plugin::return_items(\%itemcount);
}
}
#END of FILE Zone:poknowledge ID:202060 -- Tarerd_Gahar
|
 |
|
 |
 |
|
 |

10-02-2008, 12:54 PM
|
|
Developer
|
|
Join Date: Feb 2004
Location: UK
Posts: 1,540
|
|
Quote:
|
3. Under description, can you set up a description for the initial task window? For example: [0, This is my general description.][1, This is my description for step 1][2,3, This is my description for shared steps 2 and 3.]. Currently it is blank if step 1 and 2 are shared but if there is only 1 step, the main task window shows the entire text from the first step.
|
The way it works is that the entire description is sent to the client and it is the client which decides which portion to display based on which activity you are on. Are you saying it is not working like live ?
I think it maybe be possible to have an extra field in the task table for a description which is only displayed in the task selector window. If this new field was null, then it could just behave as at present.
Quote:
Alter the task table to have minlevel and maxlevel fields
Create a bool function for CheckTaskLevel()
Create perl quest function quest::istaskappropriate(taskid)
|
This would be simple to do. Could let them default to 0 meaning no level restriction. Anyone else have any input on this feature (and the extra field for a description specific to the task selector window) ?
Quote:
|
Odd text display. Here is what I am talking about. Please look at this task with your previous and new revisions. You'll notice the text gets cut short also.
|
I just ran through this task and can't see what you are referring to. Which text gets cut short ?
|
 |
|
 |

10-02-2008, 01:48 PM
|
 |
Developer
|
|
Join Date: Mar 2003
Posts: 1,500
|
|
|

10-02-2008, 01:49 PM
|
 |
Developer
|
|
Join Date: Mar 2003
Posts: 1,500
|
|
|

10-02-2008, 02:23 PM
|
|
Developer
|
|
Join Date: Feb 2004
Location: UK
Posts: 1,540
|
|
Putting the non-display of the reward on the task selection window aside for now, I don't see the other problems you are seeing:
I think I am running Rev29, but I have made no changes to the task code since Rev24. This is on Linux. I'll try a Windows build on the off chance there is some incompatibilty that has crept in. Guess I should also test with your task as the only active one, as that is a difference between your test and mine.
|

10-02-2008, 05:23 PM
|
|
Sarnak
|
|
Join Date: Jan 2008
Posts: 47
|
|
Adding the level check would be a big help as there were some Live quests that had level requirements before the quest giver would hand out those quests. You can see in the quest list for PoK in Alla http://everquest.allakhazam.com/db/q....html?zone=158 that soem quests have a level minimum before the giver would hand it out. Or like this quest http://everquest.allakhazam.com/db/q...tml?quest=3157 I remember from Live. I know when I was piddling around years ago after they added these armor quests, I started a noob and ran through Gloomingdeep. Once I left, I went to the armor guys. They only give quests in order, but I had to level to the appropriate level before later quests would be given.
|

10-03-2008, 05:57 AM
|
|
Developer
|
|
Join Date: Feb 2004
Location: UK
Posts: 1,540
|
|
Quote:
Originally Posted by joligario
The entire first step is shown again, however it is truncated. The following steps have no text any more. Money and Experience now shows up as a reward but not on the main task window.
|
What client are you using? By the look of it, it is the 6.2 client, however the order of the fields in the Quest Journal (Objective/Status/Zone) is different to how my 6.2 client displays it (Zone/Objective/Status).
|

10-03-2008, 06:08 AM
|
 |
Developer
|
|
Join Date: Mar 2003
Posts: 1,500
|
|
Yes, I see that... I am using Titanium.
|

10-03-2008, 06:14 AM
|
|
Developer
|
|
Join Date: Feb 2004
Location: UK
Posts: 1,540
|
|
Quote:
Originally Posted by joligario
Yes, I see that... I am using Titanium.
|
But that isn't the Titanium UI. Is it a custom one, or did you copy the 6.2 UI into your Titanium directory ?
Edit: I did a /loadskin default_old and still can't reproduce this :(
Last edited by Derision; 10-03-2008 at 02:45 PM..
|
| Thread Tools |
|
|
| Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 05:41 AM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |