GMynna Posted September 16, 2014 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 58 Reputation: 1 Joined: 08/23/14 Last Seen: October 29, 2014 Share Posted September 16, 2014 please help how do i bypass or remove the donation on rachel sanc quest? Quote Link to comment Share on other sites More sharing options...
JulioCF Posted September 17, 2014 Group: Members Topic Count: 24 Topics Per Day: 0.00 Content Count: 224 Reputation: 60 Joined: 12/30/11 Last Seen: July 20, 2024 Share Posted September 17, 2014 https://github.com/rathena/rathena/blob/master/npc/quests/quests_rachel.txt //===== rAthena Script ======================================= //= Rachel Quests //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== //= 3.6 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Collection of Rachel Quests //= Lost Child Quest: //= - End of quest coincides with opening the Sanctuary. //= - Variable in use: lost_boy (max 13) //= Bruspetti Quest: //= - [Official Conversion] //= - Requires friendship quest as a prerequisite. //= - Variable in use: rach_vice (max 24) //= Ice Necklace Quest: //= - iRO uses a different sprite for Urstia, and no cutins. //= - Variable in use: ice_necklace_q (max 7) //= Sanctuary Quest: //= - Actually two quests in one. Donation and dungeon quest. //= - Requires 10000 donations before players can start the quest. //= - Variable in use: ra_tem_q (max 23) (unset at end) //= - Variable in use: Once completed MISC_QUEST bit 8192 is set //= - Variable in use: ra_have_donated (0 no/1 yes) //= - Variable in use: $rachel_donate (max 10000) //===== Additional Comments: ================================= //= 3.0 Large reordering of Zhed, and Peace to the Arunafeltz addition. [L0ne_W0lf] //= Some more numeric conversion, and some other cleanup. //= 3.1 Updated Ice Necklace quest, added missing checks. [L0ne_W0lf] //= 3.2 Added missing updates for Peace to the Arunafeltz quest. [L0ne_W0lf] //= 3.3 Fixed occurance of PcName. [L0ne_W0lf] //= Fixed level 4 ID warps always being usable. //= 3.3a Fixed level 4 ID warps again. (Bugreport:4102) [L0ne_W0lf] //= 3.4 Added quest log entries for: //= - Ice Necklace Quest //= - Thor Volcano Base Quest addition. //= 3.5 Updated RE/Pre-RE EXP. [Euphy] //= 3.6 Added questlog support. [Euphy] //============================================================ // Lost Child Quest (Prerequisite to High Priest quest) :: rachel_wonjumin //============================================================ Quote Link to comment Share on other sites More sharing options...
GMynna Posted September 17, 2014 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 58 Reputation: 1 Joined: 08/23/14 Last Seen: October 29, 2014 Author Share Posted September 17, 2014 https://github.com/rathena/rathena/blob/master/npc/quests/quests_rachel.txt //===== rAthena Script ======================================= //= Rachel Quests //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== //= 3.6 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Collection of Rachel Quests //= Lost Child Quest: //= - End of quest coincides with opening the Sanctuary. //= - Variable in use: lost_boy (max 13) //= Bruspetti Quest: //= - [Official Conversion] //= - Requires friendship quest as a prerequisite. //= - Variable in use: rach_vice (max 24) //= Ice Necklace Quest: //= - iRO uses a different sprite for Urstia, and no cutins. //= - Variable in use: ice_necklace_q (max 7) //= Sanctuary Quest: //= - Actually two quests in one. Donation and dungeon quest. //= - Requires 10000 donations before players can start the quest. //= - Variable in use: ra_tem_q (max 23) (unset at end) //= - Variable in use: Once completed MISC_QUEST bit 8192 is set //= - Variable in use: ra_have_donated (0 no/1 yes) //= - Variable in use: $rachel_donate (max 10000) //===== Additional Comments: ================================= //= 3.0 Large reordering of Zhed, and Peace to the Arunafeltz addition. [L0ne_W0lf] //= Some more numeric conversion, and some other cleanup. //= 3.1 Updated Ice Necklace quest, added missing checks. [L0ne_W0lf] //= 3.2 Added missing updates for Peace to the Arunafeltz quest. [L0ne_W0lf] //= 3.3 Fixed occurance of PcName. [L0ne_W0lf] //= Fixed level 4 ID warps always being usable. //= 3.3a Fixed level 4 ID warps again. (Bugreport:4102) [L0ne_W0lf] //= 3.4 Added quest log entries for: //= - Ice Necklace Quest //= - Thor Volcano Base Quest addition. //= 3.5 Updated RE/Pre-RE EXP. [Euphy] //= 3.6 Added questlog support. [Euphy] //============================================================ // Lost Child Quest (Prerequisite to High Priest quest) :: rachel_wonjumin //============================================================ i do have question if i copy paste all scripts? it will automatically remove the 10,000 donation? Quote Link to comment Share on other sites More sharing options...
JulioCF Posted September 18, 2014 Group: Members Topic Count: 24 Topics Per Day: 0.00 Content Count: 224 Reputation: 60 Joined: 12/30/11 Last Seen: July 20, 2024 Share Posted September 18, 2014 //= Sanctuary Quest: //= - Actually two quests in one. Donation and dungeon quest. //= - Requires 10000 donations before players can start the quest. //= - Variable in use: ra_tem_q (max 23) (unset at end) //= - Variable in use: Once completed MISC_QUEST bit 8192 is set //= - Variable in use: ra_have_donated (0 no/1 yes) //= - Variable in use: $rachel_donate (max 10000) Quote Link to comment Share on other sites More sharing options...
Antares Posted September 19, 2014 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 420 Reputation: 89 Joined: 01/30/12 Last Seen: April 29, 2023 Share Posted September 19, 2014 @GMynna What he tries to say is that you may change the variables (or the conditions), as said in the posted description part. Just look up the variable ($rachel_donate) and change the value: if ($rachel_donate >= 10000) { You can set the donation limit with it. 1 Quote Link to comment Share on other sites More sharing options...
GMynna Posted September 23, 2014 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 58 Reputation: 1 Joined: 08/23/14 Last Seen: October 29, 2014 Author Share Posted September 23, 2014 @GMynna What he tries to say is that you may change the variables (or the conditions), as said in the posted description part. Just look up the variable ($rachel_donate) and change the value: if ($rachel_donate >= 10000) { You can set the donation limit with it. thank you Quote Link to comment Share on other sites More sharing options...
Antares Posted September 23, 2014 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 420 Reputation: 89 Joined: 01/30/12 Last Seen: April 29, 2023 Share Posted September 23, 2014 You are welcome ( ●˽●) Quote Link to comment Share on other sites More sharing options...
Koutaro Satomi Posted October 11, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 22 Reputation: 0 Joined: 09/27/14 Last Seen: May 12, 2018 Share Posted October 11, 2014 how could i make this close to official?? like a character must quest this.. only people who have done the quest could go in?... bcoz on my server only 1 person was able to do the quest but alot of my players was able to get in... Quote Link to comment Share on other sites More sharing options...
Emistry Posted October 11, 2014 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 10 hours ago Share Posted October 11, 2014 how could i make this close to official?? like a character must quest this.. only people who have done the quest could go in?... bcoz on my server only 1 person was able to do the quest but alot of my players was able to get in... http://irowiki.org/wiki/Rachel_Sanctuary_Quest based on offiical RO, it's per server not per character. Quote Link to comment Share on other sites More sharing options...
Koutaro Satomi Posted October 11, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 22 Reputation: 0 Joined: 09/27/14 Last Seen: May 12, 2018 Share Posted October 11, 2014 What i meant is doing the quest not the donations @___@ Quote Link to comment Share on other sites More sharing options...
Question
GMynna
please help how do i bypass or remove the donation on rachel sanc quest?
Link to comment
Share on other sites
9 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.