-
Re: How To Creat your own Quest
Quote:
Originally Posted by
xAnasx
thanks alot brother
but 1 problem how can i change the quest requeat
i dont want them to attack 20 mngyang i want to create my own
any ideas ? :D
and another thing like thebigbody
i have everything writes in 0
no words or anything thanks
i think in th tab i must edit textusystem or iam wrong ?
Code:
function QNO_TEST_QUEST() -- you should match this with your filename!
QUESTID = LuaGetQuestID("QNO_TEST_QUEST") -- IMPORTANT: must match with the name in your database
LuaSetStartCodition(2, QSC_QUEST, QSC_LEVEL, 1, 1)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_CH_SMITH")
LuaInsertMissionOrCompleteNpc("NPC_CH_SMITH")
LuaQuestInsertNpc(1, "NPC_CH_SMITH")
LuaSetAchievementLimit(1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetMissionData_EX(QUESTID, 0, MISSION_TYPE_KILL_MONSTER, "SN_CON_QNO_TEST_QUEST", 1, "MOB_CH_MANGNYANG", 0, 20, 0, 1)
InsertQuestMenuStringList("NPC_CH_SMITH", 8, "BASIC_MENUSTRING_GREETING", "SN_NPC_CH_POTION_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_TEST_QUEST_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_TEST_QUEST_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_TEST_QUEST_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_04", "BASIC_MENUSTRING_INVENTORY_FULL", "SN_TALK_QNO_TEST_QUEST_05", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_06", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_TEST_QUEST_07")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(1, 7200, 0, 0, 1, "ITEM_MALL_GLOBAL_CHATTING", 10)
LuaSetAchievedSkillPont(0)
end
You See The
1- MOB_CH_MANGNYANG this is Mob code you can change to mob code you want to make it on Quest
2- The Red Number [ 20 ] is the How much mob need to complete the quest
3- about everything appear ( 0 )
Check Media lines you added and try to change to letter then import and keep test :)
Quote:
Originally Posted by
thebigbody
thxxxxxx
i did all right from the first time ^_^
but i have 2 problems
1 - everything ( words ) = 0 no any letters but this is not important i will fix it
2 - nothing appear to me when i choose reward although when i click it i got the 10 globals but nothing appear
screen :
http://im19.gulfup.com/UMZK1.png
You added RefQuestRewardItem
Code:
1 [ID] QNO_TEST_QUEST 0 ITEM_MALL_GLOBAL_CHATTING xxx 0 10 xxx 0 xxx 0 xxx
On your Media on Server_deb--> Silkroad --> Textdata --> RefQuestRewardItem.txt
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
MaDenGo
Code:
function QNO_TEST_QUEST() -- you should match this with your filename!
QUESTID = LuaGetQuestID("QNO_TEST_QUEST") -- IMPORTANT: must match with the name in your database
LuaSetStartCodition(2, QSC_QUEST, QSC_LEVEL, 1, 1)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_CH_SMITH")
LuaInsertMissionOrCompleteNpc("NPC_CH_SMITH")
LuaQuestInsertNpc(1, "NPC_CH_SMITH")
LuaSetAchievementLimit(1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetMissionData_EX(QUESTID, 0, MISSION_TYPE_KILL_MONSTER, "SN_CON_QNO_TEST_QUEST", 1, "MOB_CH_MANGNYANG", 0, 20, 0, 1)
InsertQuestMenuStringList("NPC_CH_SMITH", 8, "BASIC_MENUSTRING_GREETING", "SN_NPC_CH_POTION_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_TEST_QUEST_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_TEST_QUEST_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_TEST_QUEST_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_04", "BASIC_MENUSTRING_INVENTORY_FULL", "SN_TALK_QNO_TEST_QUEST_05", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_06", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_TEST_QUEST_07")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(1, 7200, 0, 0, 1, "ITEM_MALL_GLOBAL_CHATTING", 10)
LuaSetAchievedSkillPont(0)
end
You See The
1-
MOB_CH_MANGNYANG this is Mob code you can change to mob code you want to make it on Quest
2- The Red Number [ 20 ] is the How much mob need to complete the quest
3- about everything appear ( 0 )
Check Media lines you added and try to change to letter then import and keep test :)
You added RefQuestRewardItem
Code:
1 [ID] QNO_TEST_QUEST 0 ITEM_MALL_GLOBAL_CHATTING xxx 0 10 xxx 0 xxx 0 xxx
On your Media on Server_deb--> Silkroad --> Textdata --> RefQuestRewardItem.txt
Thx For The Type Quest ( Mob ) Worked
But The ( 0 )
the same :(
-
Re: How To Creat your own Quest
I Want To Make It Many Times Not Just One
How ?
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
thebigbody
I Want To Make It Many Times Not Just One
How ?
you know , i didn't tested with many times but i think it's easy
Just change :
LuaSetAchievementLimit(1)
Change 1 to --> bla bla bla
and Tell me if Work
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
MaDenGo
you know , i didn't tested with many times but i think it's easy
Just change :
LuaSetAchievementLimit(1)
Change 1 to --> bla bla bla
and Tell me if Work
It Worked Yeeeeeeeeah :D
And I Guess To Make Many Reward Must Change The PAY_ITEM_METHOD_EXACT = ( 1 )
Change This 1 To Any Thing U Want Isn't It
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
thebigbody
It Worked Yeeeeeeeeah :D
And I Guess To Make Many Reward Must Change The PAY_ITEM_METHOD_EXACT = ( 1 )
Change This 1 To Any Thing U Want Isn't It
No :) if you add for example 2 items for reward on quest
On RefRewardQuestItem
Make 2 Lines with same Quest id and same on media
And Done :)
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
MaDenGo
No :) if you add for example 2 items for reward on quest
On RefRewardQuestItem
Make 2 Lines with same Quest id and same on media
And Done :)
aha ok cool
ty alot
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
thebigbody
aha ok cool
ty alot
Np :) Add like if i helped xD :D
-
Re: How To Creat your own Quest
Lol copy past and credits to you for posting it here?xD
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
Luy
Lol copy past and credits to you for posting it here?xD
huh.. Tell me who's the guy i coped from him ?!
huh
-
Re: How To Creat your own Quest
hay bro i add every thing like you say and its work in SR_Game but when i login in client i cant Found the Quest Can you help me in this Error
-
Re: How To Creat your own Quest
thank you
apology friend where I have to insert this code
PHP cone
function QNO_TEST_QUEST() -- you should match this with your filename!
QUESTID = LuaGetQuestID("QNO_TEST_QUEST") -- IMPORTANT: must match with the name in your database
LuaSetStartCodition(2, QSC_QUEST, QSC_LEVEL, 1, 1)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_CH_SMITH")
LuaInsertMissionOrCompleteNpc("NPC_CH_SMITH")
LuaQuestInsertNpc(1, "NPC_CH_SMITH")
LuaSetAchievementLimit(1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetMissionData_EX(QUESTID, 0, MISSION_TYPE_KILL_MONSTER, "SN_CON_QNO_TEST_QUEST", 1, "MOB_CH_MANGNYANG", 0, 20, 0, 1)
InsertQuestMenuStringList("NPC_CH_SMITH", 8, "BASIC_MENUSTRING_GREETING", "SN_NPC_CH_POTION_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_TEST_QUEST_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_TEST_QUEST_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_TEST_QUEST_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_04", "BASIC_MENUSTRING_INVENTORY_FULL", "SN_TALK_QNO_TEST_QUEST_05", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_06", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_TEST_QUEST_07")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(1, 7200, 0, 0, 1, "ITEM_MALL_GLOBAL_CHATTING", 10)
LuaSetAchievedSkillPont(0)
end
-
Re: How To Creat your own Quest
Can someone release maybe a descripter which works?
Would be great. Ive edit mine but need to change something
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
irving1201
thank you
apology friend where I have to insert this code
PHP cone
function QNO_TEST_QUEST() -- you should match this with your filename!
QUESTID = LuaGetQuestID("QNO_TEST_QUEST") -- IMPORTANT: must match with the name in your database
LuaSetStartCodition(2, QSC_QUEST, QSC_LEVEL, 1, 1)
QM_CONVERSATION = 1
LuaSetStartMethod(QM_CONVERSATION, 1, "NPC_CH_SMITH")
LuaInsertMissionOrCompleteNpc("NPC_CH_SMITH")
LuaQuestInsertNpc(1, "NPC_CH_SMITH")
LuaSetAchievementLimit(1)
LuaSetMissionDataSize(QUESTID, 1)
LuaSetMissionData_EX(QUESTID, 0, MISSION_TYPE_KILL_MONSTER, "SN_CON_QNO_TEST_QUEST", 1, "MOB_CH_MANGNYANG", 0, 20, 0, 1)
InsertQuestMenuStringList("NPC_CH_SMITH", 8, "BASIC_MENUSTRING_GREETING", "SN_NPC_CH_POTION_QS", "BASIC_MENUSTRING_REQUEST_ACCEPT_QUEST", "SN_TALK_QNO_TEST_QUEST_01", "BASIC_MENUSTRING_AT_ACCEPT", "SN_TALK_QNO_TEST_QUEST_02", "BASIC_MENUSTRING_AT_DENY", "SN_TALK_QNO_TEST_QUEST_03", "BASIC_MENUSTRING_NOT_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_04", "BASIC_MENUSTRING_INVENTORY_FULL", "SN_TALK_QNO_TEST_QUEST_05", "BASIC_MENUSTRING_ACHIEVED", "SN_TALK_QNO_TEST_QUEST_06", "BASIC_MENUSTRING_ACHIEVED_NOW", "SN_TALK_QNO_TEST_QUEST_07")
LuaSetMissionCompleteNum(0)
PAY_ITEM_METHOD_EXACT = 1
LuaSetAchievedItem(1, 7200, 0, 0, 1, "ITEM_MALL_GLOBAL_CHATTING", 10)
LuaSetAchievedSkillPont(0)
end
it's not code bro it's Quest Script
Read my Release again to understand
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
FantasiaSRO
Can someone release maybe a descripter which works?
Would be great. Ive edit mine but need to change something
No one has?
-
1 Attachment(s)
Re: How To Creat your own Quest
yes thanks 100% hermano Attachment 122866
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
irving1201
Give a Like if i Helped
-
Re: How To Creat your own Quest
hey .. how can i change the limit of quest cuz when i make it 999 its stay 7 in game .. thx
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
Mada Ahmed
hey .. how can i change the limit of quest cuz when i make it 999 its stay 7 in game .. thx
What meant !?
The Quest Repeat !
-
Re: How To Creat your own Quest
hay any one help me i add ever thing like you say and SR_Game Say Quest Work But When Login into game Found Quest = 0 and When Accept to Do it i Got Crash and Char Not Work
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
MaDenGo
it's not code bro it's Quest Script
Read my Release again to understand
"My release"?You just copy paste from epvp lol like you made the guide
-
Re: How To Creat your own Quest
i add the Quest But Every thing = 0 In Quest Can help me
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
fantasiasro
can someone release maybe a descripter which works?
Would be great. Ive edit mine but need to change something
no one has it?!
-
Re: How To Creat your own Quest
Quote:
Originally Posted by
FantasiaSRO
no one has it?!
Only Stratti(The releaser of this guide) got it, or someone else made a decrypter for the .lua files from joymax
-
Re: How To Creat your own Quest
thx bro...How i can set for example, 3 rewards, but players can chose only one?
regards