-
Posts
72 -
Joined
-
Last visited
-
Days Won
1
Community Answers
-
Valor's post in Poem of Bragi NPC was marked as the answer
prontera,237,81,5 script Performer 479,3,3,{ end; OnTouch: if( .sbragi < gettimetick(2) ){ // triggered within area 7x7, start bragi if not on delay unitskilluseid getnpcid(0),321,10; // bragi(321) level 10 set .sbragi,gettimetick(2) + 180; // delay 3 minute for npc to cast song } end; OnInit: setunitdata getnpcid(0),UNPC_INT,150; // set npc INT 150 setunitdata getnpcid(0),UNPC_DEX,150; // set NPC DEX 150 end; }
-
Valor's post in How to properly adding item restriction on WOE:SE maps? (SOLVED) was marked as the answer
check:conf/battle/item.conf
maybe you can equip / change it but has no effect
// Allow the consumption of usable items that are disabled by item_noequip.txt? (Note 1) // no = can't be consumed // yes = consumed with no effect allow_consume_restricted_item: yes // Allow equipping items that are disabled by item_noequip.txt? (Note 1) // no = can't be equipped and will be unequipped when entering the map // yes = can be equipped but gives no effect // If the equip is compounded with restricted card(s), it ignores this check but still gives no effect. allow_equip_restricted_item: yes renewal: db/re/item_noequip.txt
at default vellums has flag 1 cant be worn at normal maps, i dont know if double entry of flag works, maybe you set like this
1293,1
1293,256
Legend for 'Flag' field (bitmask): // 1 - restricted in normal maps // 2 - restricted in PVP // 4 - restricted in GVG // 8 - restricted in Battlegrounds // 16 - restricted in WOE:TE castles // Restricted zones - configured by 'restricted <number>' mapflag // 256 - restricted in zone 4 < WOE:SE map // Examples: 1293,257 // Velum_Jamadhar can't be worn in normal maps and maps marked as 'restricted zone 4'(1+256)
-
Valor's post in Server dont save changes was marked as the answer
check following conf to set how often, how fast, save limit, and what action also save changes.
https://github.com/rathena/rathena/blob/master/conf/char_athena.conf#L105
https://github.com/rathena/rathena/blob/master/conf/map_athena.conf#L91
https://github.com/rathena/rathena/blob/master/conf/map_athena.conf#L96
https://github.com/rathena/rathena/blob/master/conf/map_athena.conf#L112
-
Valor's post in How to protect your server? was marked as the answer
client side / server side protection?
without investing money, u may try:
enable packet obfuscation - https://rathena.org/board/topic/101092-packet-obfuscation-support/
enable md5 hashcheck
https://github.com/rathena/rathena/blob/master/conf/login_athena.conf#L159
https://github.com/rathena/rathena/blob/master/doc/md5_hashcheck.txt
use grf encryption - https://rathena.org/board/topic/104888-guide-grf-editor-encrypting/#comment-297643
Enable Pincode - https://github.com/rathena/rathena/blob/master/conf/char_athena.conf#L196
Hexed DATA.INI on client
use anti-bot / anti-hack script can be found around rAthena forum.
use trusted VPS host with DDos protection like OVH
-
Valor's post in VIP Buffs was marked as the answer
- script vipbuff -1,{ OnInit: bindatcmd "vipbuff",strnpcinfo(0)+"::OnBuff"; end; OnBuff: if (vip_status(1)) { sc_start SC_ASSNCROS,60000,10; sc_start SC_POEMBRAGI,60000,10; sc_start SC_APPLEIDUN,60000,10; sc_start SC_WHISTLE,60000,10; sc_start SC_NIBELUNGEN,60000,5; sc_start SC_DRUMBATTLE,60000,5; sc_start SC_INTOABYSS,60000,1; sc_start SC_SERVICE4U,60000,10; sc_start SC_HUMMING,60000,10; sc_start SC_FORTUNE,60000,10; } end; } untested
-
Valor's post in setunitdata only changes the parameter of the first mob was marked as the answer
i tested this time... hehe @luizragna
payon,172,218,4 script monstertest 52,{ monster "payon",167,215,"Bigfoot (Weakened)",1060,.amount,strnpcinfo(0)+"::OnDead"; for (.@i = 0; .@i < .amount; .@i++) { .mid = $@mobid[.@i]; setunitdata .mid,UMOB_MAXHP,10000; setunitdata .mid,UMOB_ATKMIN,10000; setunitdata .mid,UMOB_ATKMAX,21000; setunitdata .mid,UMOB_MATKMIN,10000; setunitdata .mid,UMOB_MATKMAX,21000; setunitdata .mid,UMOB_HIT,10000; setunitdata .mid,UMOB_ATKRANGE,5; setunitdata .mid,UMOB_ADELAY,100; getunitdata .mid,.@param; setunitdata .mid,UMOB_HP,.@param[UMOB_MAXHP]; } OnDead: end; OnInit: set .amount,3; end; }
-
Valor's post in Add Buffs to Healer was marked as the answer
check
src/map/script_constants.h sacrament sc_start SC_SECRAMENT FCP: sc_start SC_CP_WEAPON sc_start SC_CP_ARMOR sc_start SC_CP_SHIELD sc_start SC_CP_HELM