Jump to content

Ancyker

Members
  • Content Count

    28
  • Joined

  • Last visited

  • Days Won

    1

Ancyker last won the day on February 4 2013

Ancyker had the most liked content!

1 Follower

About Ancyker

  • Rank
    Member

Recent Profile Visitors

3071 profile views
  1. Input file is 518 MB (543,297,029 bytes) but it completes instantly and the output file is only 46 bytes. Any ideas? --------------------------- NED Info --------------------------- Decryption Complete --------------------------- OK ---------------------------
  2. Now make one that encrypts, please XD (The official one doesn't work on Windows 10, it just crashes)
  3. Kinda sad you tried to pass off a sprite as new when it was already on RRO. Above image has the image from the RRO wiki overlayed on the bottom 2 frames, with the middle frame having a direct overlay and the bottom frame having a 50% opacity to show the pixels line up.
  4. He tried to pass these recolors off as new original content sprites to RebirthRO. Buyer beware.
  5. Called it, etc. (Hope Ind is ok)
  6. This script will disguise a character as another class similar to theirs, i.e. disguise a Lord Knight as a Rune Knight or vice versa. If they have a mount, it will display. I've kept this to myself for a while, but after seeing the terrible ways people were going about this, I decided to release this to the public. It's loosely based on the script I made for RebirthRO. Get it from GitHub Note: You cannot charge for access to this NPC or it's features. For more details see here.
  7. A command to reload the zone DB would be nice. map->read_zone_db(); Might be as simple as calling the function. Might need this first, though: map->zone_db_clear(); Could be included as part of another @command, or as a new @command.
  8. Yeah. I need to push a new update yet. I think the current pre release is buggy. RRO gets updates directly from me as part of a long standing agreement.
  9. The UI is completely skinnable. RebirthRO uses it.
  10. I have just made a very large update, I think a beta release is near. I'd like it if some people could test this more thoroughly before I call it a beta release. An Admin CP will be added during the beta. Special thanks to RebirthRO for being the first major server to adopt Triton 2 as their primary CP. This made finding bugs very easy and made quite a long list. That is the reason behind the long delay between the last update and now ------------------------------------------------------------------------r107 | ancyker | 2013-05-28 00:02:18 -0400 (Tue, 28 May 2013) | 13 linesFixed minor bugs. Updated several modules and files.- Optimized TritonCP class. Added function for validating an alphanumeric string.- Added a flag to PHP Mailer for compatibility.- Made language entry for character rename more clear.- Fixed bug in account module.- Optimized avatar module and increased compatibility.- Fixed bug in emblem module.- Fixed bugs and optimized forgot module.- Added logging for login module.- Added security to login module.- Updated logout module to match.- Fixed cosmetic bug in ranking modules.- Made accidental purchases more difficult in rename and transgender modules (via skin updates).------------------------------------------------------------------------r106 | ancyker | 2013-05-27 23:54:47 -0400 (Mon, 27 May 2013) | 1 lineMerging changes from class project.------------------------------------------------------------------------r105 | ancyker | 2013-05-27 23:49:39 -0400 (Mon, 27 May 2013) | 1 lineModified all database classes to add support for using less than (<) and greater than (>) for non-integers.------------------------------------------------------------------------r104 | ancyker | 2013-05-27 23:13:35 -0400 (Mon, 27 May 2013) | 13 linesFixed major and minor bugs. Updated several modules and files.- Added better file name compatibility to Triton Avatar.- Improved payment API hooks.- Added priority loading to premium module hooks.- Fixed minor bug in Ariel.- Fixed small exploit allowing a person to escape jail in the account module.- Fixed cosmetic bug (warning message) in the account module.- Added logging to payment API.- Register module now respects ReCAPTCHA settings.- Fixed bugs in rename module preventing it from working.- Updated vpoints to use IP instead of account ID.- Fixed bug in Skrill that made it use the PayPal email instead of the Skrill email.- Fixed cosmetic (skin) bug in WoE module.
  11. 1) You don't need an NPC timer for every MVP. A single timer can control every MVP. My example shows 2 MVPs controlled by a single timer. 2) Every MVP already has a timer. How do you think the server knows when to spawn them? It uses a timer. 3) You should not be using @reloadscript on a live/production server anyway. That's what test servers are for.
  12. I fixed this before in eAthena by scripting every MVPs spawn timer into global variables. It would only respawn them if the global variable was up. It's not hard to script, just takes a while to do each of them. Some pseudo code: - script MVPSpawner -1,{OnTimer60000: if ( $maya < gettimetick(2) && .maya != 1) { monster "anthell02",0,0,"Maya",1147,1,"MVPSpawner::OnMayaDeath"; set .maya,1; } if ( $doppel < gettimetick(2) && .doppel != 1) { monster "gef_dun02",0,0,"Doppelganger",1046,1,"MVPSpawner::OnDoppelDeath"; set .doppel,1; } stopnpctimer; setnpctimer 0; startnpctimer; end; OnMayaDeath: set $maya,gettimetick(2) + 7200 + rand(0,600); set .maya,0; end;OnDoppelDeath: set $doppel,gettimetick(2) + 7200 + rand(0,600); set .doppel,0; end;OnInit: initnpctimer; setnpctimer 0; startnpctimer; end;} There's obviously more to it than this. You need to track if it's currently alive (this will just keep spawning Mayas forever until someone kills one), start and reset the timer, etc. But this would preserve the monsters dead/alive state even through server restarts. Ok I wrote some more code, it should work but I did not test it. You'll need to add the rest of the MVPs as well.
  13. Premium modules now available for purchase. Click here to purchase. For a limited time use coupon code "Hercules" for 25% off your first year. Remember, Triton is STILL technically an Alpha. Please report any bugs you find, most bugs will be patched within 24 hours (if I'm online they will likely be patched within minutes).
  14. r95 of Triton is now out. Highlights Added Janus. Added Ariel, a new DRM for Triton premium modules. Added rename module. Reorganized payment API configuration variables. **Some were renamed.** Fixed a few bugs in account module.
  15. Introducing Janus. Janus is a configuration file protection module. It's designed to protect your database information from read access vulnerabilities. Note: Janus is not 100% compatible with the current version of Triton. It will be a drop in replacement soon, but for now you can rename janus.php to import.php to get the protection immediately. Janus will be fully supported in all released versions after the current (r90).
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.