Jump to content

nerugm

Members
  • Content Count

    8
  • Joined

  • Last visited

Posts posted by nerugm


  1. 25 minutes ago, nerugm said:

    I would like to have an item that, when used, will earn Cashpoints.


    atcommand <@cash/#cash> <character name> <amount>

     

    Or do I have to use the NPC function script?

    i'm done, script is.

    	Id: xxxxx
    	AegisName: "xxxxx"
    	Name: "xxxxx"
    	Type: "IT_USABLE"
    	Trade: {
    		nodrop: true
    		notrade: true
    		noselltonpc: true
    		nocart: true
    		nostorage: true
    		nogstorage: true
    		nomail: true
    		noauction: true
    	}
    	Script:<"
    		charcommand("#cash "+strcharinfo(PC_NAME)+" +100");
    	">

     


  2. 3 hours ago, 4144 said:

    i checked in your client version.

    look like this client using weight as raw value. other clients using it as multiply to 10.

    i will try to do generic fix for old clients.

     

    but for you for quick fix, find in clif.c line

    item->weight = id->weight * 10;

    
    item->weight = id->weight * 10;

    and replace to this

    item->weight = id->weight;

    
    item->weight = id->weight;

     

    i'm done, Thank.


  3. 18 hours ago, 4144 said:

    you link is not working,

    you can see in shop more than one item?

    if no probably you again build hercules in wrong way?

     

    The script contains every item in the script. I just turn it off because everything looks good. However, when exchanging, the system warns that you are overweight and cannot exchange equipment items. Except that the maximum weight is over 6000 or more when I try the Mechanic class and the skill increases the maximum weight to 8000+, so I can trade items.

     

    How can I solve this problem?

     

    this is video

     


  4. On 12/26/2021 at 8:59 PM, 4144 said:

    then set correct packet version and client type and try rebuild your server.

    after server run it should show correct packet version and client type.

    See here http://nemo.herc.ws/downloads/2020-07-29aRagexeRE/#build-on-windows

     

     

    i found a new problem If I want to buy weapons or armor I received an overweight notification and couldn't buy the device. Even though I only weigh 120/7100, where do I have to solve the problem?


    screenAgis006.thumb.jpg.a1e5a257712602466480a0f8b730f80e.jpg


  5.  

    On 12/26/2021 at 8:59 PM, 4144 said:

    then set correct packet version and client type and try rebuild your server.

    after server run it should show correct packet version and client type.

    See here http://nemo.herc.ws/downloads/2020-07-29aRagexeRE/#build-on-windows

     

    I tried to follow what you have told me, but. I still can't open it. Till next time. Thank you for your help.

    update 01.03AM(+7GMT)

    i'm try to use new client to 2019-11-27aRagexeRE is working, i'm so happy.


  6. On 2/14/2020 at 10:36 AM, 4144 said:

    From last release in hercules was added new shop type: expanded barter shop.

    This shop allow buy item with different amount and pay with other items or with money. For removed items supported refine levels.

    Also this shop allow infinite or limited numbers in shop. Limited numbers saved into database.

     

    For use shop example script uncomment in file npc/scripts_custom.conf this line:

    //"npc/custom/expandedbartershop.txt",

    
    //"npc/custom/expandedbartershop.txt",

     

    This shop supported from clients:

    Ragexe: 2019-11-20 and newer

    RagexeRE: 2019-11-06 and newer

    Ragexe zero: 2019-11-27 and newer

     

    Same sample images:

    unknown.png

     

    expanded_barter_shop.png

     

    hi guy.

    i'm use 2020-07-28aRagexeRE and set #define PACKETVER in mmo.h to Ver 20201224 but shop can't open and don't show error message on console. please help, thanks

×
×
  • Create New...

Important Information

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