-
Posts
146 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by mR L
-
itu map renewal, kamu harus rubah server kamu dari pre-renewal ke renewal server maka otomatis kebuka
-
-
Bloody Branch MVP kill announcer & MVP Announcer script
mR L replied to DEsMOn's question in Script Requests
- script MVP_Announce -1,{ OnNPCKillEvent: if (getmonsterinfo(killedrid,MOB_MVPEXP) != 0) { getmapxy [email protected]$,[email protected],[email protected]; announce "'"+ strcharinfo(0) +"' has killed ("+ getmonsterinfo(killedrid,MOB_NAME)+") "[email protected]$+".",bc_yellow|bc_all; } end; } -
still sending you to interrogation room even the code is correct
mR L replied to AinsLord's question in Scripting Support
- 1 reply
-
- 1
-
-
Change This To This if (Zeny >= 400000 || countitem(7179) >= 1) {
-
How to create the effect to remove the expense of ninja stones?
mR L replied to Tdi123's question in Source Support
https://github.com/rathena/rathena/blob/master/db/pre-re/skill_db.yml # ItemCost: Item required to cast. (Default: 0) # - Item Item name. # Amount Item amount. # Level Skill level. Makes the skill item check become level dependent if supplied. (Default: applies to all levels) -
callshop NPC that only displays specific items on my inventory
mR L replied to norightinfo's question in Script Requests
https://github.com/rathena/rathena/blob/master/db/pre-re/item_db_usable.yml - Id: 501 AegisName: Red_Potion Name: Red Potion Type: Healing Buy: 50 Weight: 70 Trade: NoSell: true Script: | itemheal rand(45,65),0; -
try to reset from sql with script
-
INPUT REQUIRMENTS OR PER ACC ONLY 1 INSTANT JOB ONLY
mR L replied to Dev Yhams's question in Scripting Support
Check on setting // -- Usable for Only 1 Time set .Based,1; // [ 0 - Account Based / 1 - Character Based ] -
is it possible to use bindatcmd only for player?
mR L replied to Valcars's question in Scripting Support
- script custom_go2 -1,{ OnInit: bindatcmd "go2", strnpcinfo(3)+"::OnGo2",0,1; end; OnGo2: if (getgmlevel() > 0) dispbottom "For Player only !!"; else warp "SavePoint",0,0; end; } -
try this, but not tested - script PVPPOINTS -1,{ OnPCKillEvent: [email protected]$,[email protected],[email protected],0; if (getcharid(3) == killedrid) end; if ([email protected]$ != "pvp_y_1-2") end; set [email protected], getcharid(3); set [email protected], killedrid; attachrid([email protected]); if (Zeny > 100000) { set Zeny, Zeny - 100000; dispbottom "You Lost 100.000 Zeny from "+rid2name(killerrid); emotion e_sob,1; } else { dispbottom "Sorry no Zeny on the "+rid2name(killedrid); emotion e_meh,1; } attachrid([email protected]); if (Zeny > 100000) { set Zeny, Zeny + 100000; getitem 504,1; dispbottom "You Gained 100.000 Zeny from "+rid2name(killedrid); dispbottom "You Gained 1 White Potion from "+rid2name(killedrid); } else { dispbottom "Sorry no Zeny on the "+rid2name(killedrid); emotion e_meh,1; } end; }
-
prontera,273,204,3 script Sample Shop 556,{ callshop "sample item",2; end; OnInit: waitingroom "Sample Shop",0; end; } - pointshop sample item -,#HourlyRewards,12020:5,608:25
-
https://rathena.org/board/topic/84778-makeitem-4x4-cell-on-monster-death/
-
Change this : To This : "Guild vs Guild [" + getmapusers("guild_vs3") + "]",gvg1;
-
How to stop loop in the same item function?
mR L replied to mawjustin's question in Scripting Support
if (isequippedcnt(cardID) > 2) { bonus bStr,3; } -
MY BADDD !! this happend when you try to remove bound item check so please guys !! DON'T EVER NEVER remove the code they make everything nice with this code
-
Change this : To this : if ( countitem(30000) > 0 || countitem(30002) > 0 || countitem(30003) > 0 || countitem(30004) > 0 ) {
-
hello, I need support I got error when I try to open my ragnarok with encrypted grf --------------------------- GRF Encryption - File not found --------------------------- The client executable is invalid. Encryption feature will be disabled. Error code : 0x02. --------------------------- OK --------------------------- I play at pc (OS : Win 7 ) normal then I change to my laptop (OS: Win 10) become error Thank you before EDITED : already fix, personal issue
-
card_trader.txt or Change this : if (@sold_nameid[[email protected]] > 4000 && @sold_nameid[[email protected]] < 32000) { To this : if (@sold_nameid[[email protected]] > 4000 && @sold_nameid[[email protected]] < 4454) {
-
prontera,0,0,0,0 monster Poring 1002,50,0,0,"poringprize::OnMobDead" - script poringprize -1,{ OnMobDead: #poring_kill = #poring_kill + 1; if ( #poring_kill == 10 ) { getitem 677,1; #poring_kill = 0; } end; }