Log in

View Full Version : No faction assignment in quests


Lurker_005
12-21-2003, 03:13 PM
I was looking thru the quest parsers and could not find anything for assign faction changes from quests. For some reason I thought there was, and I put them in the quests I converted from Ethernalquest data.

Scorpious2k
12-21-2003, 03:18 PM
There is. The command is faction(<id>,<amount>) or in perl quest::faction(<id>,<amount>).

mollymillions
12-22-2003, 04:28 AM
I find that a sub will be ignored if it contains a faction command.

eg. quest::faction("10112","1");

Zone.exe does not give any errors (0.5.3-DR1).

Eglin
12-22-2003, 10:19 AM
The perl parser only officially supports the commands outlined in the new quest syntax sticky... I posted somewhere about how to add new commands, and gave the faction code as an example. The official release hasn't been updated, since I don't have cvs access.

Eglin
12-22-2003, 10:25 AM
Do a forum search for quest::faction... I posted somewhere on how to add it. The perl parser only officially supports the syntax given in the new quest format sticky (the best docs avaliable at the time). I've stopped updating the source, though, since I don't have cvs access and the alternative is too damn frustrating.

Lurker_005
12-22-2003, 02:24 PM
There is. The command is faction(<id>,<amount>) or in perl quest::faction(<id>,<amount>).

That is what I expected, but couldn't find a referance to quest::faction in the code. but granted I couldn't find a referance for the old qst faction command even though I used it when I coverted the ethernalquest quests months ago.

Yes, eqemu supports the notion of faction. You can use the $faction in quests to get faction standing. You can use the undocumented faction function in the native parser, or you can add a line like Code:
"sub faction{push(@cmd_queue,{func=>'faction',args=>join(',',@_)});}"
to the bottom of embparser.cpp and recompile to use it in your Perl quests. If I'm interpreting Wes's code correctly, then the appropriate syntax for the function is "faction(faction id, amount)"
hah! knew I didn't find it in the perl parser ;) That and you didn't support it in your qst-to-pl perl script. Quick note on that perl conversion script, it seems to add an I at the ends of "if($text=~/name/i);" type statments and had ;; instead of ; at the end of everything was that intentional?

Ok, I request that someone get that line merged in to the CVS source.

Eglin
12-22-2003, 03:16 PM
Quick note on that perl conversion script, it seems to add an I at the ends of "if($text=~/name/i);" type statments and had ;; instead of ; at the end of everything was that intentional?Yeah. Easier to unconditionally slap on a ; than to check to see if one already exists. Perl doesn't care about ;;, so neither do I. If it really bothers you, just s/;+/;

mollymillions
12-22-2003, 05:03 PM
Can i formally request the enhancement from the DevTeam. i.e. Add

"sub faction{push(@cmd_queue,{func=>'faction',args=>join(',',@_)});}"

to embparser.cpp

Thanks.

Trumpcard
12-22-2003, 05:14 PM
I'll make sure it's available in 0.5.3