Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/22/12 in all areas

  1. Your translation file has wrong encoding, looks like UTF-8 to me; or the langtype does not support your language.
    2 points
  2. E - Script Collection Last Update : September 10, 2013 Refine Function SQL Mission Board Monster Marching Vendor Control Advanced Stylist Coin Exchanger Doppelganger Race Of The Day Limited Items Multi Currency Shop Random News GM Online List Link Broken E-Inquiry DotA Runes Flower Counting Game Class Restriction Chain Quest Build Manager Misc Scripts : Freebies Script Card Trader Gold Room [ Pick Gold ] Gold Room [ Guild Tax ] Map Restriction [ GM Based ] Daily Reward Monthly Reward Monster Spawner Monster Summoner with Last Summoned Display Players Stats & Equipments 3rd Job Item Giver Exchanger [ Cashpoint to Coins ] Exchanger [ Poring Coin - Zeny ] Exchanger [ Points to Tickets ] Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] Party Match Auto Ban Over Stats Users Soul Link Buff Kill Players gain Cash Points Party Members All Get Items [ Snippet ] Message Board Stalker Class Skill Reproduce NPC Multiple Selection Quest [ Template ] In-Game Item Rewarder In-Game Points Rewarder Invasion Event Custom Item Rate Status Point Seller [ Snippet ] Anti Bot Security Script Anti Bot Script [ Code / Question ] Item Combo Restriction [ LHZ Card ] Drop Item Upon Death PVP Switcher + Announcer [ Guild Master ] Rotating Waitingroom Messages +10 Refiner [ Specific Items ] Random Rate Item Exchanger MVP Invasion Premium Users [ Boost Rates ] Display Cutin Image upon Login Custom Randomed Box Items Kick GM during WOE Custom Crafting NPC Restrict Same IP [ Certain Map ] Coloured Items Exchanger Guild Master Changer Party Team PK Match Gambling Game IRC Channel Crafting NPC Guild Storage Restriction Stage Game [ Version 4 ] Monster Wiki Event [ Version 3 ] Special Thank you for my Tutor : Notes : I am a bit lazy to write all those Script Descriptions, i do believe that all of you able to get how this script works. Anyway, i will still doing my best to write the Updated Changelog or informations about the script as detail as possible. All the Scripts above are uploaded to Pastebin . Abide the Following Rule : Scripts Error / Not Working , you have to Explain it in Details. ( Add in Images / Modified Scripts ) Do not SPAM / BUMP in my Topic. Do not ask for Support stuffs for other Scripts in this Topic. Link Down , then drop [ @Emistry ] a message. I Reserved the Right for NOT Answering your Posts if you did not abide my Topic's Rules. Keep This In Your Mind : All the Scripts i distribute here are NOT FOR COMMERCIAL USES . DO NOT remove my Credits if you are using part of the scripts to modify your own. DO NOT re-release the scripts in any form / way. If you ♥ these Scripts , Click on to Vote this Topic up. Or you may also click on at above the Topic
    1 point
  3. This small modification allow you to manage damage of skills. Request: this topic Ver.2.1: patch updated. You can change the skill damage in file db/skill_damage_db.txt (skill_damage.txt) Version 1.1: added more options for manage skills damage on specific mapflags ( QQfoolsorellina'sSuggestion ) Version 2.0: added map bitflag ( Lighta's Suggestion ) Version 2.1:(Updated 2.0) Skill_damage_v1.1.patch Manage_Skill_Damage_2.0.patch manage_skill_damage_v2.1_rAthena17121.patch
    1 point
  4. Hello folks, here's the map I came up with, the idea is to be a spooky/creepy cathedral (perhaps a dungeon?). Feedbacks/Criticism always welcome! By the way, the map doesn't have shadows. Screenshots : Direct Links : Tinypic Links : http://i50.tinypic.com/9k055z.jpg http://i46.tinypic.com/wldev5.jpg http://i50.tinypic.com/1zcnyps.jpg http://i46.tinypic.com/2m2j1ir.jpg http://i48.tinypic.com/2r2yzhx.jpg http://i45.tinypic.com/2rwlt01.jpg http://i47.tinypic.com/4fe5j.jpg http://i49.tinypic.com/15ge9k.jpg Download Links : Direct Link : Grand_Cathedral.rar Mediafire : http://www.mediafire...qoqol3kd3ecpcy2
    1 point
  5. 1 point
  6. @personperson49, yes you can patch them by making patch like setting below:
    1 point
  7. Your last three line should be: ACCESSORY_MAGICAL_BOOSTER = 873, ACCESSORY_ANGEL_WINGS = 2000, }
    1 point
  8. No one will share an account with you.. You need to contribute to the forum to become an active contributor/community member. It's set up so that random people just don't go there to download... rather, become a member and contribute back instead of just "downloading".
    1 point
  9. 1 point
  10. Delete the neoncube.file,, it is located on your RO folder.. if you don't see it. maybe your file extension of your file was hidden. look for the file named neoncube..
    1 point
  11. i think would be one of these file..or maybe both..not sure..
    1 point
  12. afxres.h error is due to the fact, that you probably use Visual Studio Express rather than the full version. The remaining is probably me not considering namespaces or some other C++ oddity.
    1 point
  13. Hi poter21, I would recommend that you consult your provider and ask them to set ACL's on their network router to prevent UDP to all ports besides the ones that you truly need; this is the best method in preventing your port from being hogged by the attack. On your server, you may use IPTables to block out all the attacks that you don't want. Here is a basic IPTables script for you; #!/bin/sh # Clear all settings /sbin/iptables -F /sbin/iptables -X /sbin/iptables -t nat -F /sbin/iptables -t nat -X /sbin/iptables -t mangle -F /sbin/iptables -t mangle -X /sbin/iptables -P INPUT ACCEPT /sbin/iptables -P FORWARD ACCEPT /sbin/iptables -P OUTPUT ACCEPT # Allow unlimited traffic on the loopback interface /sbin/iptables -A INPUT -i lo -j ACCEPT /sbin/iptables -A OUTPUT -o lo -j ACCEPT # Set default policies /sbin/iptables --policy INPUT DROP /sbin/iptables --policy OUTPUT DROP /sbin/iptables --policy FORWARD DROP # Allow unlimited input/output traffic /sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT /sbin/iptables -A OUTPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT # Set SYNFLOOD inspection chain /sbin/iptables -N AH_SYNFLOOD /sbin/iptables -A AH_SYNFLOOD -f -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp ! --syn -m state --state NEW -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ALL ALL -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ALL NONE -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ACK,FIN FIN -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ALL FIN,URG,PSH -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ACK,PSH PSH -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ACK,URG URG -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags FIN,RST FIN,RST -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags SYN,FIN SYN,FIN -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp --tcp-flags SYN,RST SYN,RST -j DROP /sbin/iptables -A AH_SYNFLOOD -p tcp -j ACCEPT # Allow incoming TCP port 22 (ssh) traffic /sbin/iptables -A INPUT -p tcp --dport 22 -m state --state NEW -j AH_SYNFLOOD # Allow Ragnarok Online (TCP) /sbin/iptables -A INPUT -p tcp --dport 6900 -m state --state NEW -j AH_SYNFLOOD /sbin/iptables -A INPUT -p tcp --dport 6121 -m state --state NEW -j AH_SYNFLOOD /sbin/iptables -A INPUT -p tcp --dport 5121 -m state --state NEW -j AH_SYNFLOOD # Allow MySQL /sbin/iptables -A INPUT -p tcp --dport 3306 -m state --state NEW -j AH_SYNFLOOD Please note that this is a static rule for generally blocking out basic attacks. It would be more recommended if you use a more dynamic and active firewall such as CSF or APF; these may proactively protect you from DOS attacks. After installing CSF or APF (your choice); you need to adjust a lot of settings to enable/disable different functions. And then you should install (D)DOS Deflate; http://deflate.medialayer.com/ If you have done all this and still suffer from attacks; contact your host to fix their 'sysctl.conf'. A lot of spoofed attacks and martian packets can be dropped at the server level before it reaches to your VPS; so it'd be their responsibility to make sure that it's properly configured to do this. Good luck with your issue!
    1 point
  14. Hi Poter21, I had recently replied to your question that you submitted to AH's client area; but I shall reply here as well just in case you did not see my reply. If you are having issues with a huge DDOS attack, I would recommend checking out Staminus and purchasing the SecurePort system for the amount of traffic you wish to be filtered. You have asked if AsuraHosting can handle this type of attack, and I stated no. We handle up to 10Gbit/s of traffic which is equivalent to about 1.2Gbps; we use a 2 dedicated server array for our DDOS protected services. 1 dedicated server equipped with Snort & pFSense, placed in front of the other dedicated server to host our RO services; not an advanced scrubbing method like other big providers, but good enough to get the job done against reasonably sized TCP-based DDOS attacks and all UDP attacks. What I would recommend is contacting LSN, and get 5 IP's. Bind each map, char, and login server with different IP's and set up custom ports which should be something like '12203,12204,12205'; and then hex your client to read a hidden clientinfo.xml. For SYN protection; please contact me and I will provide you with the sysctl.conf which AsuraHosting uses for our dedicated servers; this will help a lot in deterring Spoofed Attacks. And for software, you should use CSF+LFD; with the proper PORTFLOOD, CT_LIMIT, CONNLIMIT, and SYNFLOOD values set. Again, you will need to contact me, and I can provide a personal service. --- Unfortunately there isn't a cheap way to deter DDOS attacks, so there only way is to spend $200-$500 a month for a somewhat decent provider with protection. And RoDocs does not have DDOS protection; they rely on a 1Gbit port, no filtration, and their network technicians to manually mitigate. (PNAP datacenter, this is what they do.)
    1 point
  15. I stopped reading after "Sirs,".
    1 point
  16. try this....start from fresh ............. Client Parts get a 2012-04-10 Client here. http://supportmii.co...10aRagexeRE.exe get a Diffpatcher here http://supportmii.co...f2012Pack_v3.7z Diff your client.....but make sure you included this diff file http://supportmii.co...Obfuscation.dll and ...IGNORE these....... Load LUA before LUB Read Data Folder First Client should be ready by now........with a working Setup.exe ( i using Blue Ghost Setup.exe ) Data Folder / GRF Parts Download the Basic Data Folder here .... http://subversion.as...n_Project/data/ Download your Lub File Package here... http://subversion.as...Translated].rar Okay.....after the LUB files is downloaded, inside you will saw 2 folder ... data folder src folder We only need the "Data Folder" not the "Src Folder" ........ put the "Data Folder" that you found inside the LUB File Package ....into the Basic Data Folder you have downloaded. the final directory of your LUB files should look like these.... data\luafiles514 Remember..... you are copy paste the LUB Files folder into your Basic Data Folder's Folder ...... get a GRF Builder ... ( i using GRF Builder , get from RMS ) Create a New GRF File with whatever name you want ...... Merge the WHOLE folder of your Basic Data Folder into the GRF .... Repack ......... DONE .............. inside your DATA.INI [data] 0=yourserver.grf 1=rdata.grf 2=data.grf you're done ....should be able to connect to your server without fail....and items are also suppose to be translated since 2012-04-10 clients still reading the data from plain text files for items....... If still got problems....please post some Screenshot ....kinda lazy to read your essay >.< too long ..... Sorry for bad english ~
    1 point
  17. Diff your client with 'Skip Packet Header Obfuscation'
    1 point
×
×
  • Create New...