I made a couple of Tasks in the database...
Code:
INSERT INTO tasks (id, duration, title, description, reward, rewardid, cashreward, xpreward, rewardmethod, startzone, minlevel, maxlevel, repeatable) VALUES ('900000000', '0', 'Kill 10 Orc Pawns', 'Go forth into Greater Faydark. Slay 10 of the Orc Pawns that roam the woods.', 'Small Bronze Helm', '4213', '325', '100', '0', '54', '0', '0', '0');
INSERT INTO activities (taskid, activityid, step, activitytype, text1, text2, text3, goalid, goalmethod, goalcount, delivertonpc, zoneid, optional) VALUES ('900000000', '0', '0', '2', 'Orc Pawns', '', '', '54015', '0', '5', '0', '54', '0');
INSERT INTO tasks (id, duration, title, description, reward, rewardid, cashreward, xpreward, rewardmethod, startzone, minlevel, maxlevel, repeatable) VALUES ('900000001', '0', 'Get Orc Skull', 'Go forth into Greater Faydark and bring General Jyleel [in Felwithe] a skull of an orc.', 'Fine Steel Scimitar', '5353', '600', '200', '0', '54', '0', '0', '0');
INSERT INTO activities (taskid, activityid, step, activitytype, text1, text2, text3, goalid, goalmethod, goalcount, delivertonpc, zoneid, optional) VALUES ('900000001', '0', '0', '1', 'General Jyleel', 'Orc Skull', '', '16174', '0', '1', '61026', '54', '0');
...I can get them from a NPC (I added it to their perl script), but I cannot seem to make them work. I killed orc pawns...nothing. I tried to give an orc skull to the General...he gave it back. Do I have to use perl to make the task system work? Do I have to put an ondeath event in an orc pawn perl script? I was hoping I could make tasks without needing perl at all.