Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/14/20 in all areas

  1. Briefing & Concept Hello folks! you guess it right, it's time of Olrox free releases! I know it has been a while that due to a lot of things happening, I was not able to be active as I was before into map showcases. In fact, I have tons of map works to finish that I hope they will be out very soon. But now I'm back into map stuff and cause of this I want to share a free release among all of you; with the quality you already know! The last free prontera I shared was This Botanic Garden Prontera which has already the insane amount of 5,600+ downloads! making it the map most popular and downloaded in all time in rAthena. I hope this pack of not only one .. I mean 4 prontera seasons is gonna be a success too! About this Free Release 19-September/2013 Added the Fall Season 03-September/2013 Added the Summer Season of this pack! 29-August/2013 This pack of 4 prontera season is gonna be in showcase beginning by this day. Every 3 or 5 days I will update this thread showing another new season waiting of course of your nice welcome of this release before. We will begin with summer. This pack of prontera seasons has the intention to -preserve- the original style of Prontera, but improving it. This means, it was done by the main purpose of being a discreet and not excessive edition for servers which tends to have users that likes the old prontera behavior. Summer is about trees with some yellowish tones... kinda an semi arid place, that you can sense that the sun is hard. Video ... watch it in HD 720p! Video of this release will come at the time the 4 seasons are in showcase. Also I have to say in advance that these prontera seasons have a neat new feature in mapping that I'm sure you will love! HD Screenshots Panoramic Fall Screenshot 1 Shows the Fall prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The main plaza is different on this season. Detailed Fall Screenshot 1 Floor on both sides is different on this Fall season. Panoramic Fall Screenshot 2 Its the north area of this place. Panoramic Fall Screenshot 3 Shows another angle of the center are of this Fall season. Panoramic Spring Screenshot 1 Shows the spring prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The main plaza is different on this season. Detailed Spring Screenshot 1 Floor on both sides is different on this Spring season. Panoramic Spring Screenshot 2 Its the north area of this place. Panoramic Spring Screenshot 3 Shows another angle of the center are of this Spring season. Panoramic Summer Screenshot 1 Shows the summer prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The Prontera Flags are taken by the game of Ragnarok 2 Legend of the second, editing the original rsm models of the lamps and making them with more altitude. Perspective Summer Screenshot 2 A custom angle that tends to shows map in a neat way. Detailed View Summer Screenshot 3 Shows the style of the floor + trees. All of the floors of these prontera seasons are different and in this summer season, the floor looks for the -stoonish- style of prontera + some vibes and yellowish tones. The trees are not from Ragnarok, they are from Dragonica Online. Download Link Download is ready! As everytime I only ask one simple thing from the community at everytime I do releases: Support! Lets make this thread popular, all I need is your feedback to reach this:[/url] A comment is totally appreciated A thumb up reputation is nice too A topic rating is a nice gesture.[/url] Following my Facebook will keep you up to date of my last map works ---> https://www.facebook.com/OlroxMaps Those are the ways you can support this release. Honestly I hope this pack will have tons of downloads. Thanks guys and good day to everyone!
    1 point
  2. By using item_noequip.txt. // Forbidden Items Database // Defines restrictions on equipment, items, and cards in map types and zones. // // Structure of Database: // ItemID,Flag // // 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 // 32 - restricted in zone 1 // 64 - restricted in zone 2 // 128 - restricted in zone 3 // 256 - restricted in zone 4 // 512 - restricted in zone 5 // 1024 - restricted in zone 6 // 2048 - restricted in zone 7 // 4096 - restricted in zone 8 // // Passing negative value as flag will unset the flag instead. // // Examples: // 1201,1 // Knife can't be worn on normal maps // 608,4 // Yggdrasil Seed can't be consumed in both GvG and WoE Castles // 4174,6 // Deviling Card has no effect in every PVP or GVG map, and during WoE // 501,32 // Red Potion can't be consumed on maps marked as 'restricted zone 1' // 519,322 // Milk can't be consumed in PVP and maps marked as 'restricted zone 2' or 'restricted zone 4' (256+64+2) // 519,-2 // Unset `restricted in PVP` flag from Milk. Making it usable in PVP again.
    1 point
  3. if (@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700) { change to if ((@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700) || (@sold_nameid[.@i] >= 27120 && @sold_nameid[.@i] <= 27126)) {
    1 point
  4. Ok, so you've moved donate.php under donate folder, you should access your custom donate page like this "?module=donate&action=donate" in your code.. <?php echo $this->url('donate', 'donate'); ?> where the first param (donate) is the name of the module and the 2nd param is the action which is the file name (donate.php).
    1 point
  5. Finally i resolve it! Dont add -> firewall-cmd --zone=INSERT_ZONE --add-masquerade --permanent For remove in server proxy this command -> firewall-cmd --zone=public --remove-masquerade --permanent /* Port Forwarding CentOS 7 FirewallD */ // ======================================================================== // Please read the comments per line it is self-explanatory. // Important Parameters: // INSERT_ZONE = output of the get default zone // INSERT_IP = is the public IP of your main VPS or server // If you like the guide give it a thumbs up! // ======================================================================== // This command is to get the default zone being used by your VM. firewall-cmd --get-default-zone // This command is to check all rules applied to your VM by the current active zone. firewall-cmd --zone=INSERT_ZONE --list-all // Enabling Masquerade Status (IP Forwarding). // This is the important configuration else below won't work firewall-cmd --zone=INSERT_ZONE --add-masquerade --permanent // IP/Traffic forwarding // Make sure you have configured masquerade firewall-cmd --zone="INSERT_ZONE" --add-forward-port=port=6900:proto=tcp:toport=6900:toaddr=INSERT_IP --permanent firewall-cmd --zone="INSERT_ZONE" --add-forward-port=port=6121:proto=tcp:toport=6121:toaddr=INSERT_IP --permanent firewall-cmd --zone="INSERT_ZONE" --add-forward-port=port=5121:proto=tcp:toport=5121:toaddr=INSERT_IP --permanent // Add rules for ro-ports (assuming that you didn't change the port) firewall-cmd --zone=INSERT_ZONE --add-port=6900/tcp --permanent firewall-cmd --zone=INSERT_ZONE --add-port=6121/tcp --permanent firewall-cmd --zone=INSERT_ZONE --add-port=5121/tcp --permanent // Reload rules to take effect firewall-cmd --reload
    1 point
  6. Evening all, I hope you're all well! I've decided to post this instead of send out a mass email, because I know most of you have opted not to receive them. Service Continuation For the most part, rAthena is, and will continue to operate as normal during these trying times. We understand that the need for isolation will undoubtedly cause more traffic to our forums, which we have been prepared for since February and additional measure have been put in place in case traffic sees a random surge. Our aim is to ensure that all the information is available to you when you need it. Risk of Fraud We are also aware that during a crisis, individuals will come out of the woodwork with a view to causing harm in the form of defrauding and scamming our users. Please be diligent before handing over any money to someone you don't know. You can check a list of our approved 3rd Party Services here that have been personally vetted before approval. Staff All of rAthena's staff are volunteers, giving up their free time working towards the betterment of the project. We're also all safe and well and hope you and your families are, too. At a time when parts of the world are stuck indoors, we're using this time to continue overhauling systems. The developers are working hard on their respective projects, be they database conversions to YAML or the refactoring of older mechanics, you can be sure they're busy! The moderators have been tasked with ensuring as many of the support topics as possible have the "Best Answer" post selected in an effort to aid users. Community Please use the search feature before posting new topics. I can assure you that 99% of questions have already been answered, usually twice within the last 3 months. The function of what a community is and what it's capable of is being tested and pushed to it's limits all around the world. Look after each other and be helpful. Home Life Please be sensible and use your common sense. Wash and/or sanitise your hands regularly. Especially your keyboard and mouse! Be kind to each other. Stay safe.
    1 point
  7. Hello everyone! I'm currently working on a small program. The concept here is that a person can use it in order to edit their navi_link_krpri.lub / navi_link_krsak.lub files in an orderly manner. The way the program is going to work - is that it's going to be taking in entries (from which maps your custom map should be accessible) as well as the in-and-out coordinates. It will then create entries within the file, following the pattern of how it's currently built, therefore not breaking the current incrementing index values inside of it. My question to you guys is - What are your thoughts on it? Reckon it's a good idea? If yes, should I perhaps also expand it - so that the user can also use it to edit other "navi_*" files? I personally believe it would make adding navigation data to the Projects a lot easier. ?
    1 point
  8. Try ./configure --enable-64bit
    1 point
×
×
  • Create New...