|
You last visited: Today at 03:30
Advertisement
job temple quests
Discussion on job temple quests within the SRO Private Server forum part of the Silkroad Online category.
01/26/2018, 08:48
|
#1
|
elite*gold: 0
Join Date: Mar 2012
Posts: 66
Received Thanks: 17
|
job temple quests
hello
i want ask about how to make quest in job temple
just like kill 30 thieves "player"
how could i do that meanwhile there's no code for normal players for quests
here's screen shot for what am lookin for
|
|
|
02/01/2018, 14:37
|
#2
|
elite*gold: 90
Join Date: Feb 2018
Posts: 287
Received Thanks: 58
|
Well, this requires a procedure if im not wrong, i had the same issue back then when i had my server but im quite sure it does.
You can try to replace a "Kill XX amount of monsters" - Quest and work on the procedure. Basically replace the mob count with a player count, this might work im not quite sure tho since im out of the sro scene for about 6 years.
Give it a try.
|
|
|
02/01/2018, 18:31
|
#3
|
elite*gold: 0
Join Date: Jul 2009
Posts: 1,860
Received Thanks: 760
|
Quote:
Originally Posted by Aloah.
Well, this requires a procedure if im not wrong, i had the same issue back then when i had my server but im quite sure it does.
You can try to replace a "Kill XX amount of monsters" - Quest and work on the procedure. Basically replace the mob count with a player count, this might work im not quite sure tho since im out of the sro scene for about 6 years.
Give it a try.
|
You were "in the scene"? You ain't even past the 50 post counter ...
OT: A filter might be your solution, or just a simple quest renaming. Though, I don't remember having a "kill player X times" lua function there somewhere.
|
|
|
02/01/2018, 21:06
|
#4
|
elite*gold: 1
Join Date: Nov 2011
Posts: 2,532
Received Thanks: 1,439
|
It doesn't need a filter, yet there is no "anticheat" when you do it through quests.
MISSION_TYPE_KILL_PLAYER
Code:
function QNO_SD_GU_008()
QUESTID = LuaGetQuestID("QNO_SD_GU_008")
LuaSetStartCodition(3, QSC_QUEST, QSC_LEVEL, QSC_SYSTEM, 80, 80)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_SD_GUILD_AGENT2")
LuaInsertMissionOrCompleteNpc("NPC_SD_GUILD_AGENT2")
LuaQuestInsertNpc(1, "NPC_SD_GUILD_AGENT2")
LuaSetJobTypeStartCondition(1, OBJ_JOBSTATE_TRADER, 1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetKillPlayerMissionData(QUESTID, 0, MISSION_TYPE_KILL_PLAYER, "SN_CON_QNO_SD_GU_008_1", 1, "NPC_SD_GUILD_AGENT2", 20, 3, MKP_LEVEL, MKP_JOB, MKP_REGION, -32752, 105, 1, OBJ_JOBSTATE_ROBBER)
InsertQuestMenuStringList("NPC_SD_GUILD_AGENT2", 7, "BASIC_MENUSTRING_GREETING", "SN_NPC_SD_GUILD_AGENT2_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_SD_GU_008_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_SD_GU_008_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_SD_GU_008_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_SD_GU_008_04", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_SD_GU_008_05", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_SD_GU_008_06")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(0, 1082584, 0, 4900, 0, 0)
LuaSetAchievedSkillPont(700)
LuaSetAchievedPoint(500, "TEMPLE_ANUBIS")
end
this is one of the job temple quests.
|
|
|
02/02/2018, 05:31
|
#5
|
elite*gold: 0
Join Date: Mar 2012
Posts: 66
Received Thanks: 17
|
Quote:
Originally Posted by Aloah.
Well, this requires a procedure if im not wrong, i had the same issue back then when i had my server but im quite sure it does.
You can try to replace a "Kill XX amount of monsters" - Quest and work on the procedure. Basically replace the mob count with a player count, this might work im not quite sure tho since im out of the sro scene for about 6 years.
Give it a try.
|
Quote:
Originally Posted by Snow*
It doesn't need a filter, yet there is no "anticheat" when you do it through quests.
MISSION_TYPE_KILL_PLAYER
Code:
function QNO_SD_GU_008()
QUESTID = LuaGetQuestID("QNO_SD_GU_008")
LuaSetStartCodition(3, QSC_QUEST, QSC_LEVEL, QSC_SYSTEM, 80, 80)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_SD_GUILD_AGENT2")
LuaInsertMissionOrCompleteNpc("NPC_SD_GUILD_AGENT2")
LuaQuestInsertNpc(1, "NPC_SD_GUILD_AGENT2")
LuaSetJobTypeStartCondition(1, OBJ_JOBSTATE_TRADER, 1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetKillPlayerMissionData(QUESTID, 0, MISSION_TYPE_KILL_PLAYER, "SN_CON_QNO_SD_GU_008_1", 1, "NPC_SD_GUILD_AGENT2", 20, 3, MKP_LEVEL, MKP_JOB, MKP_REGION, -32752, 105, 1, OBJ_JOBSTATE_ROBBER)
InsertQuestMenuStringList("NPC_SD_GUILD_AGENT2", 7, "BASIC_MENUSTRING_GREETING", "SN_NPC_SD_GUILD_AGENT2_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_SD_GU_008_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_SD_GU_008_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_SD_GU_008_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_SD_GU_008_04", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_SD_GU_008_05", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_SD_GU_008_06")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(0, 1082584, 0, 4900, 0, 0)
LuaSetAchievedSkillPont(700)
LuaSetAchievedPoint(500, "TEMPLE_ANUBIS")
end
this is one of the job temple quests.
|
Thanks guys for your efforts , i got an idea for it i will release it asap.
|
|
|
 |
Similar Threads
|
[cSRO]Job Temple uniques spawn time?
11/14/2018 - Silkroad Online - 3 Replies
I have the Apis quest and I know he spawns after Isis and Anubis spawns...but I don't know when they spawn. I have the quest for over a week and i haven't seen them spawning...I think they spawn in the morning or during the night. So...anyone know their spawn time? also post your timezone because it might be different
Thanks
|
Job temple with Anti bot mobs lvl 140
10/08/2010 - Silkroad Online - 5 Replies
Server: Poseidon
Last night while i was sleeping something sweet happened.
Anti bot mobs in the job temple.
This was taken from my sbot chat, no other way to copy something that happened 8hours ago.
The funny part to all this is that in the thief room you find maybe 1 bot party making sp, and in the hunter room you find 3 parties.
But still the anti bot mobs were put in the thief room.
|
Any Sbot scripts for 105 level job temple?
06/28/2010 - Silkroad Online - 0 Replies
Last Day , i tried to make script for job temple but when i started to training bot warned me : "Invalid script or script too short" ... so whar will I do? Can anyone help me? THX
|
All times are GMT +1. The time now is 03:34.
|
|