Jump to content

Erinoxy

Members
  • Posts

    9
  • Joined

  • Last visited

  • Days Won

    1

Erinoxy last won the day on March 6 2017

Erinoxy had the most liked content!

Profile Information

  • Gender
    Not Telling
  • Location
    Belgium
  • Server
    n/a

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Erinoxy's Achievements

Poring

Poring (1/15)

3

Reputation

1

Community Answers

  1. Finally found a solution by looking in another existing script.. First step : get the inventory and loop on it. In my case I only took the elements having the number 6 (card). We add the ID of the card inside the array and we also create the menu by adding the name of the card. getinventorylist; for (; .@i < @inventorylist_count; .@i++) { if(getiteminfo(@inventorylist_id[.@i],2) == 6){ .@items[.@count] = @inventorylist_id[.@i]; .@menu$ = .@menu$ + getitemname(@inventorylist_id[.@i]) + ":"; .@count++; } } Get the selected element : .@select = select(.@menu$) - 1; Delete the selected item and give money : delitem .@items[.@select],1; set Zeny, Zeny + 500000; I hope it will be useful for seomeone else.
  2. Hi all, I would like to know how I can add a NPC that will only check the cards in my inventory and will display that in a select list. I already had a look on the custom scripts but I didn't find anything convincing. Many thanks in advance.
  3. Indeed, it's what I finally understood. But I would like to know : with this client/packet, I will have the renewal classes , no ? (Ranger, Genetic, ...) I disabled all the renewal options (renewal.h) but I didn't read any specific descriptions related to the fact it's possible to avoid using renewal characters Thanks a lot
  4. Thank you for this tutorial, it was really useful. Note : based on your visual studio version, maybe it will be necessary to run another ."sln" file.
  5. Hi all, I'm totally lost at the moment ... and I hope sommeone has a solution In fact, I'm able to run my client and I'm able to connect my account ... ...however when I click on the server, I have an error : (2015-11-04aRagexe_patched.exe stopped functioning) It's more or less clear : apparently I don't have the good client version. Can someone confirm this theory ? Some information that could be useful : - I'am following this tutorial : https://rathena.org/board/topic/104452-tutorial-how-to-create-ragnarok-offline-2015-client/ - No problems on the server side. Everything is green. - I downloaded the latest Kro Client there : https://rathena.org/board/topic/102572-kro-full-client-last-update-10262016 (10/26/2016) - Files : trunk/src/common/mmo.c (I recompiled after changing the packet date). trunk/db/packet_db.txt (I used the version 23 because apparently it's the last pre-renewal version ) If it's a client problem, do you know where I can find the corresponding client .exe ? ...maybe this one ? : Thank you in advance.
  6. You are everywhere ... thank you again
  7. Hello, I'm currently following the tutorial regarding the ragnarok server installation. ...and more precisely, I'm currently importing all the SQL files needed However I would like to know : Do I need to also import all the sql fille inside the "upgrades" folder ? (See the screenshot attached) Thank you in advance
  8. Hello, I'm currently creating my own ragnarok server but I'm not a big fan of the renewal versions. My question is the following one : Is it possible to download the current git version of ragnarok but only select a specific version (pre-renewal) ? Maybe via the configuration files ? In addition do you know where I can find the version number of the project ? And if there is a place where I can find all the changelogs for each version ? (In order to choose the version which will fit with my needs) (I hope my questions are not too stupid, my "ragnarok server knowledge" are quite limited... ) Thanks in advance
×
×
  • Create New...