Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/22/19 in all areas

  1. I open this topic to find out if anyone has a custom script already created or support me to made it with the Charleston Crisis enchantment system described on this iROwiki page: https://irowiki.org/wiki/Verus_Enchants This system is already working on NovaRO and can be viewed here: https://www.novaragnarok.com/wiki/Verus_Equipment_Exchange Also with this occasion I wanted to share my modifications to the instance version of @Ziu, @Alayne and @DanielArt for the addition of the 6 missing equipements (Mass Charleston NPC) exchangeable with 10 Charleston Parts and part of the @llchrisll's file that introduces the 2 NPC PLUTO_09 and MARS_01 in Verus which allow you to purchase the Excellion Set and related enchantments: https://www.novaragnarok.com/wiki/Verus_Equipment_Exchange#Excellion_Set With these 2 files, the instance Charleston Crisis is almost complete, but unfortunately it will only lack the part related to the enchanters... alone I can not do it because I'm not a good coder but I think you could copy and edit from the system of enchantments of Mora, as reported by IROWiki: CharlestonCrisis.txt excellion_gear.txt
    1 point
  2. What if you removed Doram race from your server and client... ...but it just left a ugly space on the char creation window? Well here comes the solution. I simply edited the file and made use of the space. You can edit it individually. A .psd file is included for Photoshop/GIMP edits. (Instruction is also included) Download here ~ Requirements:
    1 point
  3. Hello Everyone So as of late I am playing Pokemon game on discord and there is this sub game where the bot will spawn pokemon image on the channel and the user on channel only need to guess what is the name of the pokemon, it work to substitute Poke-Ball system and I think this system not far of from disguise so I am thinking to create this one just for the fun, the code is simple and crude so here if any of you interested to make it more robust please do get the needed file here: https://github.com/Litro/disguise-discord to run it you need to fill the value required in config.json file "token" : "" "apikey" : "", "WhiteList": [""], token: you can read the guide how to obtain discord bot token from here apikey: you need to request an API key. Please register an account in divine-pride.net forum and request a key in your profile page. WhiteList: is user id of staff that can use the command to start or stop disguise event. you can read it here for how to obtain it.
    1 point
  4. core1,156,123,3 script Freebies NPC 4_GEFFEN_10,{ soundeffect "freebies.wav",0; cutin "igu03",2; set .@n$, "[Freebies NPC]"; setarray .@rwd[0],22808,1,7037,200,13973,100,40105,1,4399,1,4302,1,4407,1,4419,1,4441,1,4128,1,4330,1,4047,2,4174,2,4302 ,1; // Rewards: <item id>,<item amount> query_sql ("SELECT `last_ip` FROM `login` WHERE `account_id`=" + getcharid(3) + "", .@lip$); if ( getd("$" + .@lip$ + "_NG") > 0 || #NewbieGift > 0) { mes .@n$; mes "I'm sorry, the rewards are exclusively for new players."; close2; cutin "",255; end; } mes .@n$; mes "Welcome! Here are some free gifts"; mes "For newcomers:"; announce "Ragnarok : Please welcome [ "+strcharinfo(0)+" ] !!",0; for ( set .@size, getarraysize(.@rwd); .@i < .@size;set .@i, .@i + 2 ) mes .@rwd[.@i+1] + " x " + getitemname(.@rwd[.@i]); close2; set #NewbieGift, 1; setd "$" + .@lip$ + "_NG", getd("$" + .@lip$ + "_NG") + 1; for ( set .@size, getarraysize(.@rwd); .@i < .@size;set .@i, .@i + 2 ) getitem .@rwd[.@i], .@rwd[.@i+1]; cutin "",255; save "prontera",156,161,2,2; warp "prontera",156,161; end; OnInit: waitingroom "Freebies v2",0; end; }
    1 point
  5. ok hi, first of all i'm totally new here and with the servers thing so... my question may be completly noobish but i can't seriously figure out a solution by my self, so here is the thing i used this guide: to try and set the server only on my computer since i have no need to set it online yet, just want to test it on my own first, but when i try the runserv.bat this happens: it just gets there and nothing enlse happens it seems like the charserv can't connect to the logserv but the connection between char and map seems fine... and i really don't know what couls've happened, and after a while this error happens in charserv.bat : "[Error]: make_connection: connection failed (socket #2, timeout after 10s)!" so if anyone could help i would apreciate it greatly. thanks alot.
    1 point
  6. I am currently not actively developing the bot. you may want to check this link: https://github.com/Normynator/MVPTracker/tree/master/src/main That was one of my first projects ever, it does the same as the python bot but in Java with a bit more functionality, e.g. the Feature you asked for. But be warned, it’s poorly coded and my contain bugs. Maybe you are better off overall if you try to find another bot which is actively developed.
    1 point
  7. Just wanted to point out that .@index = rand(0, getarraysize(.@item_ids) - 1); is the equivalent of .@index = rand(getarraysize(.@item_ids)); Except it's easier to read xD. Also, you should avoid using temporary char-bound variables in scripts (@item_id versus .@item_id), those are kept until the player logs out. The usage of "set" is also deprecated, you should be using 'variable = value;". prontera,137,203,4 script TEST::KST01 834,{ setarray .@item_ids, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510; for (.@i = 0; .@i < 5; .@i++) { .@index = rand(getarraysize(.@item_ids)); getitem .@item_ids[.@index], 1; deletearray .@item_ids[.@index], 1; } end; }
    1 point
×
×
  • Create New...