Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/25/19 in all areas

  1. Hello people, I'm just starting a project to develop a control panel using Python-Django. The project just started, so it has no features completed yet! Some benefits on having a CP with Django: easier to maintain, easier to setup simple, clean, compatible environment, uses few resources can run on Docker and Heroku with less than 5 commands it auto manages the db tables it uses (upgrades, modifications, etc) Uses bootstrap, so its easy to modify/rebrand So if you want to contribute, just send me a DM and I'll add you to the repo as contributor. https://github.com/Freyja-Folkvangr/ragpycp Update: Account Register Login Logout unsalted MD5 encryption Char All Char list view Char view Reset position reset style reset save map Admin Change account Change RO settings on account Modify char Discord: _giosan#4472 Telegram: @evergreen2
    1 point
  2. Hi, try this script ? - script respawnMvp -1,{ OnInit: setarray .mob_id[0],1511; set .size, getarraysize(.mob_id); set .random, rand(.size); set .amount, 1; // amount of monster spawned set .monster, .mob_id[.random]; while (true) { if (mobcount("prontera", "respawnMvp::OnKill") < 1) { monster "prontera",154,172,getmonsterinfo(.monster, 0), .monster, .amount, "respawnMvp::OnKill"; announce "O MVP "+getmonsterinfo(.monster, 0)+" acabou de nascer!",0; } sleep 60000; } end; OnKill: announce "O MVP "+getmonsterinfo(.monster, 0)+ " foi eliminado "+ (Sex?"pelo":"pela")+" "+ (Sex?"jogador":"jogadora")+" "+strcharinfo(0)+".",0; sleep 1000; monster "prontera",154,172,getmonsterinfo(.monster, 0), .monster, .amount, "respawnMvp::OnKill"; end; }
    1 point
  3. opa @pueblodefairy this number is automatic .. it informs the player how many days he still has to pick up the items .. for example: If you set up your Attendance from May 1st until May 31st. And the player will enter on the 20th .. he will see the number 11. Which means that the player will only get 11 prizes before the current month ends. It is.
    1 point
  4. Like that ? - script spawn_woe -1,{ OnInit: setarray .mob_ID, 1001, 1002, 1003, 1005; // add more mob id setarray .map_event$, "prontera", "geffen"; // yours woe map .size_mob = getarraysize( .mob_ID ); .size_map = getarraysize( .map_event$ ); end; OnMinute00: OnMinute30: .@r = rand( .size_mob ); .@m = rand( .size_map ); monster .map_event$[.@m],0,0,"--ja--", .mob_ID[.@r],1,""; announce "a "+ strmobinfo( 1,.mob_ID[.@r] ) +" is spawn in "+ .map_event$[.@m] +" !",0; end; }
    1 point
×
×
  • Create New...