Jump to content

rokimoki

Members
  • Content Count

    51
  • Joined

  • Last visited

  • Days Won

    2

rokimoki last won the day on May 28 2017

rokimoki had the most liked content!

2 Followers

About rokimoki

  • Rank
    Advanced Member
  • Birthday 10/13/1989

Contact Methods

  • Skype
    I don't use skype

Profile Information

  • Gender
    Male
  • Location:
    Canary Islands
  • Interests
    I want to make Scripts!
  • Github
    rokimoki
  • Emulator
    Hercules

Recent Profile Visitors

2320 profile views
  1. Hi, I want to know if is possible to set up a server with renewall features (stats, exp, and everything) but just locked to an episode, for example Revo-Classic. I am asking because the new euRO server is gonna be OBT soon, but I just want to make a server for my guild for testing purposes, and it's my first time playing a revo-classic like server. I found this and that, but wow one with rAthena and other with Hercules. Any further recomendation? Thanks!
  2. Where is the Package Claim at Prontera? The package claim is a system which I did not coded, so this version send the item to a character from your account, maybe I have to edit the speeching script... Are you able to make the script? thanks in advanced! Actually no, because it's not my script (the package claim), you will receive the item to the selected char before deleting current character. PD: I edited the text in the github
  3. Where is the Package Claim at Prontera? The package claim is a system which I did not coded, so this version send the item to a character from your account, maybe I have to edit the speeching script...
  4. Hey Rokimoki? do you accept Paid Scripts? do you have SKYPE

    1. rokimoki

      rokimoki

      You can add me to Discord.

    2. Eternity

      Eternity

      does herc got discord?

       

    3. rokimoki

      rokimoki

      I don't know, I sent a PM

  5. Script Type: Quest Script Name: Bloody Branch Quest Made for: Elaria Woon Reloaded Made by: Rokimoki Latest version: Bloody Branch Quest Ragnarok version: Any version Note: This script was made for Elaria Woon Reloaded, since they are going to close I will upload two scripts I made for them. Description: This is a quest that gives a Bloody Branch, this can be configured, even the item as the quantity that gives. The special thing in this quest is that the NPC will appear randomly in any previously configured map. When appear the NPC will ask for X items, you give the items and you get the reward, simple, but the NPC will only work for 10 uses every time the NPC spawns. Configuration: Search for: // ============== NPC CONFIGURATION ============== Then you will see the configuration instructions, I think it's pretty clear, the hard part is the npc duplicate, if you set or change new maps in .mapListBB$[0] then you must do the same in npc duplicate. For example: I add my custom map "lolmap-01" in the array, setarray(.mapListBB$[0], "prontera", "payon", "geffen", "lolmap-01" // new map added, last map DON'T HAVE coma ); then I add this line as npc duplicate: lolmap-01,100,100,4 duplicate(Bloody Guy) Bloody Guy::bblolmap-01 4_M_ROKI And that's it. Reward Configuration: Search for: // here starts the reward section Then, you will see the getitem, you can add more getitem, edit the item id and quantity etc... even add cash points... Enjoy. BloodyBranchQuest.txt
  6. Script Type: Quest Script Name: Soul Reborn Made for: Elaria Woon Reloaded Made by: Rokimoki Latest version: SoulReborn.txt Ragnarok version: Pre-Renewall - SQL Server Note: This script was made for Elaria Woon Reloaded, since they are going to close I will upload two scripts I made for them. Description: You must be an advanced class 99/70 to Soul Reborn, this mean your character will be deleted from your account. In order to have a reward you need another character in your account to send the reward to his/her inventory. The reward, at this point, must be an etc item or usable item, because the sql query to insert the reward in the `inventory` table is prepared to be like that, of course you can change it to give anything you want. Enjoy. SoulReborn.txt
  7. Easy to add with a new SQL table, if you want I can help you with that.
  8. You can add NOW() in the sql syntax and will put a datetime with the current server time... As far I know, timestamp is for linux epoch time purpouses, but you can use a datetime and use NOW() when update or insert
  9. nice xD I don't even know how to use it, but thanks (ofc I open it with photoshop)
  10. Sorry, there is a problem We could not locate the item you are trying to view. Error code: 2D161/2
  11. this looks so cool, I am a disaster in graphic designing xD
  12. I'm good to work with designers, but scripts I still have a lot to learn! I have many ideas, but lack knowledge to apply them! I will follow your advice, and do some tests with cuttins, i have some ideas in my mind! PS: About sql query (t_event_points), I was a long time without working with ragnarok scripts and sql I'm learning that period in college, before that I never needed to work with sql, always had a variable like #points, but when I tried to create a ranking I saw it would be a better option learn how to work with sQL, and you helped me a lot! xP tyvm I understand, back in time I did my ranking with #vars and a sort method I did, but sql is easier and more powerful, and machines (servers) today are very powerful too and cheap.
  13. The easiest way is to make a cutin with 'click in menu to receive' and another with 'received', and of course a menu that says 'receive'. I know that is not what you want but... that's the best I can tell so far. Another best option to make a big cutin with all rewards and remarked with the which one correspond today if you are available to get it, and click in the menu 'receive reward'. PS: If you are good enough to make this script why wouldn't you make the simple sql query to know the "top 10" of t_event_points? xd EDIT: *cutin("<filename>", <position>) This command will display a picture, usually an NPC illustration, also called cutin, for the currently attached client. The position parameter determines the placement of the illustration and takes following values: 0 - bottom left corner 1 - bottom middle 2 - bottom right corner 3 - middle of screen in a movable window with an empty title bar 4 - middle of screen without the window header, but still movable The picture is read from data\texture\유저인터페이스\illust, from both the GRF archive and data folder, and is required to be a bitmap. The file extension .bmp can be omitted. Magenta color (#ff00ff) is considered transparent. There is no limit placed on the size of the illustrations by the client, although loading of large pictures (about 700x700 and larger) causes the client to freeze shortly (lag). Typically the size is about 320x480. New illustrations can be added by just putting the new file into the location above. The client is able to display only one cutin at the same time and each new one will cause the old one to disappear. To delete the currently displayed illustration without displaying a new one, an empty file name and position 255 must be used. // Displays the Comodo Kafra illustration in lower right corner. cutin("kafra_07", 2); // Typical way to end a script, which displayed an illustration during a // dialog with a player. mes("See you."); close2(); cutin("", 255); end;
×
×
  • Create New...

Important Information

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