Jump to content

chatterboy

Members
  • Posts

    308
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by chatterboy

  1. Please provide the error message or SS
  2. I tried but not work [npc;Sample] and Sample and npc:Sample its only like this i will type on chat box? [npc:Sample] testmessage
  3. Compile your server before you start...
  4. Do you want the Auto delete data or just manual?
  5. the script i made it can identify and repair automatically
  6. //===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Basic healer script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Aligned coordinates with @go. //============================================================ - script Healer -1,{ .@Price = 0; // Zeny required for heal .@Buffs = 1; // Also buff players? (1: yes / 0: no) .@Delay = 5; // Heal delay, in seconds emotion e_lv; if (@HD > gettimetick(2)) end; if (.@Price) { message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny."; if (Zeny < .@Price) end; if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2) end; Zeny -= .@Price; } specialeffect2 EF_HEAL2; percentheal 100,100; if (.@Buffs) { specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; //repairall if( getbrokenid(1) ) repairall; getinventorylist; while( .@i < @inventorylist_count ){ if ( !@inventorylist_identify[.@i] ){ delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@i],1; } .@i++; } } if (.@Delay) @HD = gettimetick(2) + .@Delay; end; } prontera,162,193,4 duplicate(Healer) Healer#prt 437 izlude,125,148,4 duplicate(Healer) Healer#izl 437 gonryun,156,122,4 duplicate(Healer) Healer#gon 437 Here I modified already
  7. Check your packet_db.txt if there is available for you 20151029 RAGEXE
  8. did you follow the guide how to repack? can you provide SC on how you do it?
  9. check you itemdb.txt maybe it has // there or accidentally you remove it
  10. to Rook1es: Im using a 2015-11-04aRagexe its work fine so far
  11. // -----------------------------// // ------- Free For All --------// // -------- By : Butch ---------// // A simple Free for all script // // -----------------------------// guild_vs5,48,51,6 script FFA Master 999,{ if(getmapusers("guild_vs5") != 1) { mes "[^FF0000FFA Master^000000]"; mes "Current players - ^FF0000"+ getmapusers("guild_vs5") +"^000000."; close; } else if(getmapusers("guild_vs5") == 1) { dispbottom "You are a winner of Event Free for all. Congratz!"; donpcevent "Free For All::OnStopEvent"; announce "Free for all winner : "+ strcharinfo(0) +"", bc_all, "0xFFCE00"; getitem 25002,1; // Reward warp "prontera", 156,149; end; } } // ------ FFA Warper -------// prontera,147,149,6 script Free For All 999,{ if (.start != 1) { mes "[^FF0000Agent Mil^000000]"; mes "Free for all is not available at the moment"; close; } mes "[^FF0000Agent Mil^000000]"; mes "What do you want?"; switch(select("Free for all")) { case 1: if( getcharid(1) ) { mes "Please leave your party."; close; } if( getcharid(2) ) { mes "Please leave your guild."; close; } else switch(rand(3)) { case 0: .@x = 18; .@y = 50; break; case 1: .@x = 50; .@y = 77; break; case 2: .@x = 81; .@y = 49; break; case 3: .@x = 49; .@y = 22; break; } warp "guild_vs5", .@x,.@y; break; } close; OnStartEvent: OnClock1245: OnClock1645: OnClock2045: OnClock0045: OnClock0445: OnClock0845: .start = 1; disablenpc "FFA Master"; announce "Free for all will start in 5 minutes.", bc_all, "0x00b89d"; sleep 120000; announce "Free for all will start in 3 minutes.", bc_all, "0x00b89d"; sleep 120000; announce "Free for all will start in 1 minute.", bc_all, "0x00b89d"; sleep 60000; announce "Free for all has started!", bc_all, "0x00b89d"; .start = 2; enablenpc "FFA Master"; sleep 2000; if ( !getmapusers("guild_vs5") ) goto OnStopEvent; mapannounce "guild_vs5", "FFA starts in 5", bc_map; sleep 1000; mapannounce "guild_vs5", "FFA starts in 4", bc_map; sleep 1000; mapannounce "guild_vs5", "FFA starts in 3", bc_map; sleep 1000; mapannounce "guild_vs5", "FFA starts in 2", bc_map; sleep 1000; mapannounce "guild_vs5", "FFA starts in 1", bc_map; sleep 1000; mapannounce "guild_vs5", "GO! Kill all!", bc_map; setmapflag "guild_vs5", mf_gvg; removemapflag "guild_vs5", mf_noskill; end; OnStopEvent: .start = 0; disablenpc "FFA Master"; removemapflag "guild_vs5", mf_gvg; setmapflag "guild_vs5", mf_noskill; end; OnInit: bindatcmd("startevent",strnpcinfo(1)+"::OnStartEvent",60,99); waitingroom "[Free For All]",0; end; } guild_vs5 mapflag partylock guild_vs5 mapflag guildlock guild_vs5 mapflag notrade guild_vs5 mapflag nodrop there you go dude!
  12. Try check your Packet version in clientXML and your packet version settings in your server or try to patch your EXE with Nemo and follow thier guide somewhere here in rAthena forum
  13. //Thor Patcher remote config file [Main] allow=true Force_Start=false policy_msg=Server is taking a nap. file_url=http://your.ragnarok.com/patch/file/ [Patch] ClientSum=AA290530 PatcherSum=8ED34A1B ClientPath=01-04-2017_bro_exe.thor PatcherPath=01-04-2017_patcher_exe.thor PatchList=plist.txt [Stars] clients=0 [Misc] FragmentLimit=50 Your main.conf must be like this Your Client EXE and Patcher EXE must be pack in THOR patchmaker....
  14. So far So good No complain as of now... Except some mobs in Doram EP. not yet release
  15. Yes help us we have the same situation and if i do the revert too many error even fresh download what could be the problem? i did not edit any of those
  16. can you provide the SC of the code link when you click that? coz your download page must be in here themes\NAME OF YOUR THEME\main inside and the code will be like this <li><a href='?module=main&action=download'>Download</a></li>
  17. as far as i remember i use that before too.... i put my pc IP in char_athena map_athena inter_athena
  18. your link is broken or your page is not in the correct position: In your theme there is a folder name MAIN maybe the folder INFO, FREBIES, DOWNLOAD is not there <li><a href='?module=main&action=download'>Download</a></li> <li><a href='?module=main&action=info'>Informations</a></li> <li><a href='?module=main&action=freebies'>Freebies</a></li> This is the correct code for your LINK instead of put href='/main/download' etc...
  19. yeah change it according to your server settings
  20. then copy the whole thing <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>sakray</servertype> <connection> <display>Ragnarok</display> <balloon>the balloon</balloon> <desc>description</desc> <address>127.0.0.1</address> <port>6900</port> <version>55</version> <langtype>1</langtype> <registrationweb>http://localhost</registrationweb> <aid> <admin>2000001</admin> <admin>2000002</admin> </aid> <loading> <image>loadingscreen01.jpg</image> <image>loadingscreen02.jpg</image> <image>loadingscreen03.jpg</image> <image>loadingscreen04.jpg</image> <image>loadingscreen05.jpg</image> <image>loadingscreen06.jpg</image> <image>loadingscreen07.jpg</image> <image>loadingscreen08.jpg</image> <image>loadingscreen09.jpg</image> <image>loadingscreen10.jpg</image> <image>loadingscreen11.jpg</image> <image>loadingscreen12.jpg</image> <image>loadingscreen13.jpg</image> <image>loadingscreen14.jpg</image> <image>loadingscreen15.jpg</image> <image>loadingscreen16.jpg</image> <image>loadingscreen17.jpg</image> <image>loadingscreen18.jpg</image> </loading> </connection> </clientinfo>
×
×
  • Create New...