-
Posts
129 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Posts posted by cook1e
-
-
prontera,0,0,5 itemshop Proof of Donation Shop 123,7179,501:10-
1
-
-
Get a clean copy from here https://github.com/rathena/rathena/tree/master/db/re
-
- Id: 368 Name: PA_SACRIFICE Description: Martyr's Reckoning MaxLevel: 5 Type: Weapon TargetType: Self DamageFlags: NoDamage: true IgnoreAtkCard: true IgnoreDefense: true IgnoreFlee: true Flags: IgnoreAutoGuard: true IgnoreCicada: true Hit: Single HitCount: 1 CastCancel: true CopyFlags: Skill: Plagiarism: true Reproduce: true Requires: SpCost: 100this?
-
If you are getting Permission Denied.
type in terminal. $ chmod a+x ./configure (You have to be in the file directory).
-
Change these files path in NEMO. ( RO_Folder/System/ ) and use llchrisll translation files. https://github.com/llchrisll/ROenglishRE
-
1. CentOS will cease to exist in it's current state very soon, which makes it an unsupported distribution.
2. CentOS has built-in security that restricts FluxCP's (and web software in general) normal operation. To "fix" so it's usable, you need to disable stuff.
Your better choice would be Ubuntu 18.04+
https://github.com/rathena/rathena/wiki/Install-on-Ubuntu -
Wrong section, you should post this on https://rathena.org/jobs_available/
-
# Trade: Trade restrictions. (Default: null) # Override Group level to override these conditions. # NoDrop If the item can not be dropped. (Default: false) # NoTrade If the item can not be traded. (Default: false) # TradePartner If the item can not be traded to the player's partner. (Default: false) # NoSell If the item can not be sold. (Default: false) # NoCart If the item can not be put in a cart. (Default: false) # NoStorage If the item can not be put in a storage. (Default: false) # NoGuildStorage If the item can not be put in a guild storage. (Default: false) # NoMail If the item can not be put in a mail. (Default: false) # NoAuction If the item can not be put in an auction. (Default: false)example.
- Id: ID AegisName: ITEM_NAME Name: ITEM_NAME Type: TYPE Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true -
-
You have a shop NPC that is using Item ID 80 and this ID don't exist.
-
-
-
- Id: 31400 AegisName: bone_xadrez Name: Chapéu Xadrez Type: Armor Buy: 20 Weight: 1 Slots: 2 Locations: Head_Top: true Refineable: true View: 3061 Script: | bonus2 bSkillAtk,"AC_DOUBLE",10;seems correct.
-
1
-
-
Update your map_cache.dat with your current prontera.gat in your GRF file and restart your server.
-
- Id: 30020 AegisName: afro_hat Name: Afro Hat Type: Armor Buy: 20 Weight: 1 Slots: 2 Locations: Head_Top: true Refineable: true View: 3020 Script: | bonus bStr,20; bonus bVit,10; bonus bLuk,15; sc_start4 "SC_ENDURE",60000,10,0,0,1; UnEquipScript: | sc_end SC_ENDURE;-
1
-
-
rAthena doesn't have an option to choose episode.
You have to change mobs/db/npc, etc... on your own
The only thing that can help you is looking for the changelogs in the official servers and wiki and make those changes manually.-
1
-
-
Make sure you have lines #define RENEWAL uncommented if they have // remove the //
https://github.com/rathena/rathena/blob/master/src/config/renewal.hpp#L24 -
Let me know how it went.
/npc/custom/custom_mob.txt // create custom_mob.txt as a clean .txt file// format "map",x,y%TAB%monster%TAB%Monster Name%TAB%,MonsterID,amount custom_map,0,0 monster Poring 1002,30
and
/npc/scripts_custom.confnpc: npc/custom/custom_mob.txtadd this line
-
1
-
-
18 hours ago, Rizz said:
Only Blacksmith/Whitesmith can open this shop, working for me.
- shop fame_shop -1,501:-1,502:-1,503:-1,504:-1 prontera,156,168,5 script fame shop 123,{ query_sql "SELECT `fame` FROM `char` WHERE `fame`>0 AND (`class`='10' OR `class`='4011') ORDER BY `fame` DESC LIMIT 10", [email protected]; if ([email protected]) { callshop "fame_shop"; }else{ dispbottom "you don't have fame points."; } end; } -
Cap limit seems to be 25
https://github.com/rathena/rathena/blob/master/src/map/path.cpp#L87
Increase it. -
I have edited the post above, try
-
.unique_id$ = get_unique_id();
to
[email protected]_unique_id$ = get_unique_id();
On 6/24/2021 at 11:15 PM, cook1e said://new_1-4,145,179,4 script Freebies Reward 691,{ [email protected]_unique_id$ = get_unique_id(); if(getd("$ID_" + [email protected]_unique_id$) > 0 || #N > 0){ mes "[ Reward NPC ]"; mes "You have already claimed your reward."; close; } mes "[ Reward NPC ]"; mes "Here's your reward. Have a nice day!"; setd "$ID_" + [email protected]_unique_id$,1; #N = 1; $reward_count -= 1; for([email protected] = 0; [email protected] < getarraysize(.rewards); [email protected] += 2) getitem .rewards[[email protected]],.rewards[[email protected]+1]; if($reward_count == 0) $reward_status = 1; end; OnInit: setarray .rewards,50000,1,12535,20,12534,20,13550,20,3100,100,13758,1; while (1) { showscript "Freebies Rental NPC!"; sleep 1000; } end; }I think changing the unique_id variable can solve your problem, try it.
-
Try this one.
- shop fame_shop -1,501:-1,502:-1,503:-1,504 prontera,156,168,5 script fame shop 123,{ query_sql "SELECT `fame` FROM `char` WHERE `fame`>0", [email protected]; if ([email protected]) { callshop "fame_shop"; }else{ dispbottom "you don't have fame points."; } end; } -
//new_1-4,145,179,4 script Freebies Reward 691,{ [email protected]_unique_id$ = get_unique_id(); if(getd("$ID_" + [email protected]_unique_id$) > 0 || #N > 0){ mes "[ Reward NPC ]"; mes "You have already claimed your reward."; close; } mes "[ Reward NPC ]"; mes "Here's your reward. Have a nice day!"; setd "$ID_" + [email protected]_unique_id$,1; #N = 1; $reward_count -= 1; for([email protected] = 0; [email protected] < getarraysize(.rewards); [email protected] += 2) getitem .rewards[[email protected]],.rewards[[email protected]+1]; if($reward_count == 0) $reward_status = 1; end; OnInit: setarray .rewards,50000,1,12535,20,12534,20,13550,20,3100,100,13758,1; while (1) { showscript "Freebies Rental NPC!"; sleep 1000; } end; }I think changing the unique_id variable can solve your problem, try it.



R > Custom Healer Npc
in Script Requests
Posted
prontera,155,173,5 script Healer 123,{ [email protected] = 1000; // Zeny Cost mes "[Healer]"; mes "Hello " + strcharinfo(0) + "."; mes "What you want?"; next; switch(select("Free Healer:Paid Healer")) { case 1: mes "[Healer]"; mes "You only will get Heal."; switch(select("Yes, please.:No, thanks.")) { case 1: specialeffect2 EF_HEAL2; percentheal 100,100; close; case 2: mes "As you wish."; close; } case 2: mes "[Healer]"; mes "Paid Healer will give you Heal + Buffs."; switch(select("Yes, please.:No, thanks.")) { case 1: if (Zeny < [email protected]) end; specialeffect2 EF_HEAL2; percentheal 100,100; specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; Zeny -= [email protected]; close; case 2: mes "As you wish."; close; } } }