-
Posts
262 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by shatowolf
-
-
1 hour ago, cadz said:
pa help naman po how to fix this wala kasing error ayaw pumasok hanggang login server lng
check the PORT.
-
-
1 hour ago, gidzdlcrz said:
Original thread here
https://herc.ws/board/topic/18975-promotional-code/
I somehow stumbled upon this thread and decided to ask if this is working on rathena. Luckily annie replied.
Link here: https://herc.ws/board/topic/18975-promotional-code/?do=findComment&comment=98439
@topicThis will be a nice feature indeed. And i think its a must.
it's like promotional code, you just need to modified some code on it.
but not 100% like that. ^_^ peace.
-
-
18 minutes ago, HiROserver said:
Hi guys,
I am about to officially release my server. I tried to pm @Functoron skype however he is not replying also I saw two functor.x on skype. How do I know who is the real one?
please see the attached picture
functor.x is the real one.
-
stay away sa mga ro server services, dahil hnd mo alam nakukuwa na pla mga files mo. ^_^
go to OVH...
-
1
-
-
simple fix. just set the mapflag to MAPNAME<tab>mapflag<tab>gvg_castle
-
-
37 minutes ago, Forshaken said:
Sorry for a noob question, most of my players are lagging when they are many people on the same map. Can someone help me with this issue? Is this client or server side?
What client date you are using ?
and yea maybe on your script or server side.
-
Check mo accname and accessoryid
double check mo din ung sprite name.
-
2 minutes ago, Feistz said:
Hi sorry for hijacking this thread but I'm interested in Gepard Shield and been trying to reach you for quite some time now and it seems i cant send you a PM through this forum. Is there any other contact method available and is the program still available? Thanks!
you can pm @Functor via skype.
-
25 minutes ago, IvanD said:
What’s else do I need ?
groups.conf
@duel {<player name>} - Enables duel mode, if a valid name is provided, the player will be sent an invite to duel. @invite <player name> - Invites a player to duel. @accept - Accepts a duel invitation. @reject - Rejects a duel invitation. @leave - Leaves duel mode.
-
Yea this is confirm. bug issue at view equipment.
-
-
use WeeMapCache.
-
pnta ka sa grf mo. edit the msgstringtable.txt
nasa line : 627 and 210 - just look for it lang.
-
I think gepard will do the trick. gepard have unique id check.
-
This is nice,. keep it up mate. will test it soon.
-
2 hours ago, lyndonros said:
BUMP.. I'm also having the same problem
why not use sanasol fluxcp? here's the link https://github.com/sanasol/FluxCP_Addons-VoteForPoints
-
9 minutes ago, mansanalchamp said:
OnMinute00: = 1hr. ??
read the doc here : https://github.com/rathena/rathena/wiki/Timers_(Scripting)
-
1
-
-
7 hours ago, iraciz said:
[Error]: Loading NPC file: npc/custom/dualkick.txt
script error on npc/custom/dualkick.txt line 22
script:add_word: invalid word. A word consists of undercores and/or alphanumeric characters, and valid variable prefixes/postfixes.
17 : //===== Contact Info: ========================================
18 : //= [Tauro]
19 : //= Email: [email protected]
20 : //= Discord: Trinity#7962
21 : //============================================================
* 22 : '-' script dl_map -1,{
23 : end;
24 :
25 :
26 : OnInit:
27 : // 1= if you have gepard 0=if you do not use gepard
at line 22. u should <tab> 22 : '-'<tab>script<tab>dl_map<tab>-1,{
-
2 minutes ago, aksehc said:
ok na boss.. working na possible ba na pwedeng ganito 1 box = 10 random items?
you mean aalisin na ung default ? item 969 and item 512.
setarray .@Default[0],rand(969,512),rand(1,5);
-
10 minutes ago, aksehc said:
pano ko sya mapapagana mga boss after ko sya ilagay sa script npc then script_custom.conf meron pa bang dapat ilagay or anything sa itemDB? pano ko maku2ha yung box?
sa itemdb mo lagay mo to :
{ callfunc "CustomBox"; },{},{}
-
1 hour ago, GMH said:
Good day, I always got map crash issues during @reloadmobdb on my happy hour script. I tried to search but i cannot find the answer that related to this issue. Hoping that you guys could help me to figure out the map crash issue on happy hour or floating rates.
I have the screenshot of crash log from "gdb map-server map-server.core".
By the way, i am using latest rAthena-rev62532.
I also enabled the mobs_level_up: yes in conf/battle/monster.conf so the monster will level up each time a player is killed.
This is the Happy Hour script i've been using:
- script HappyHourAuto -1,{
OnClock0200:
OnClock0800:
OnClock1400:
OnClock2000:
set $@brate,1000;
set $@jrate,1000;
set $@drate,500;
setbattleflag("base_exp_rate",$@brate);
setbattleflag("job_exp_rate",$@jrate);
setbattleflag("item_rate_common",$@drate);
setbattleflag("item_rate_heal",$@drate);
setbattleflag("item_rate_use",$@drate);
setbattleflag("item_rate_equip",$@drate);
announce "Happy Hour Time!!!",bc_all,0xB6FF00;
sleep 1500;
announce "Happy Hour has started for 2 hour's and the new rates will be these: Base:"+($@brate/100)+"x, Job:"+($@jrate/100)+"x, Drop:"+($@drate/100)+"x, card not included.",bc_all,0xB6FF00;
initnpctimer;
set .HHAuto,1;
sleep 1000;
atcommand "@reloadmobdb";
sleep 10000;
end;OnTimer7200000:
set .HHAuto,0;
setbattleflag("base_exp_rate",$defaultbrate);
setbattleflag("job_exp_rate",$defaultjrate);
setbattleflag("item_rate_common",$defaultdrate);
setbattleflag("item_rate_heal",$defaultdrate);
setbattleflag("item_rate_use",$defaultdrate);
setbattleflag("item_rate_equip",$defaultdrate);
sleep 1000;
atcommand "@reloadmobdb";
sleep 10000;
announce "Happy Hour Event has ended. Rates have returned to normal.",bc_all,0xB6FF00;
end;OnPcLoginEvent:
if (.HHAuto == 1) announce "Happy Hour Event currently active!",bc_self,0xB6FF00;
end;OnInit:
set $defaultbrate,700;
set $defaultjrate,700;
set $defaultdrate,300;
end;
}Thanks in advance and more power.
you can check it at line 3031 at status.ccp.
Paano palitan ung @go spawn?
in Tulong para sa Server
Posted
make sure nag compile ka.