Jump to content

Chaos92

Members
  • Posts

    1554
  • Joined

  • Last visited

  • Days Won

    36

Posts posted by Chaos92

  1. what mean reset look ? sorry i'm a newbie at making servers :/ .. (thanks for your reply btw)

    reset all your character hes using. maybe this crash because of item u wear. in your database check char table and all uppergear, midgear, etc pls reset.. in inventory table, go change all equip 1 to 0

    if u are using fluxcp, u can just reset look by using that website

  2. Well, I don't think theres a general solution to that. Since stat points can be different on several classes, I'd say it's easier if you add a stat resetter npc for free, and anyone who plays should reset their stats/skill. This way it will be sure that everything will be fine for them. Trying this through sql queries might be difficult and not obvious what to change to what.

    lol, for sure some of them not gonna reset since they have more stats in pre-renewal >.< lol

  3. I don't think this is possible through settings. A wild idea from me is to setup 2 mapservers, one with pre-re settings for monster hunting, and one with re for pvp/woe, and add an npc that warps between the 2 servs (or alter current ones and warps that point to pvp/woe maps, this way noone would notice it). It can be done, we tried it as well, but unfortunately the multi mapserver feature had it's issues. But still, I don't think this is a good idea, since there might be max value differences between RE and PRE, like max stat, resulting in status/skill point loss or anything similar.

    yeah ive changing some settings and max stats are not the same anymore . can u give me the sql query or anything else way to reset their status point so that all players status point is fair ? to query all the character 

  4.  

    https://raw.githubusercontent.com/rathena/rathena/master/doc/script_commands.txt

    *resetstatus;
    
    This is a character reset command, which will reset the stats on the invoking 
    character and give back all the stat points used to raise them previously. 
    Nothing will happen to any other numbers about the character.
    
    Used in reset NPC's (duh!)
    
    ---------------------------------------
    
    *resetskill;
    
    This command takes off all the skill points on the invoking character, so they 
    only have Basic Skill blanked out (lvl 0) left, and returns the points for them 
    to spend again. Nothing else will change but the skills. Quest skills will also 
    reset if 'quest_skill_reset' option is set to Yes in 'battle_athena.conf'. If 
    the 'quest_skill_learn' option is set in there, the points in the quest skills 
    will also count towards the total.
    
    Used in reset NPC's (duh!)
    

    that command is for personal use right, if i want to query all character ? i mean whole character in server. how ?

  5. error on your lub/lua files. 

     

    make sure you use updated LUA / LUB files.....put it in correct directory inside the data folder / grf
    make sure your click load the LUA / LUB files...
    make sure you selected the diff that bypass the client....( SkipHeader........dll ) 

     

    or use compatible data folders with client

  6. I'm having troubles using a client on Windows 8.1

    When I try to launch it it says:

     

    Application Error

    ----------------------------

    The application couldn't start correctly ( 0xc0000142 )

    I don't know where that come from :/

     

    If somebody knows the answer, I'd be grateful

    hi sir, try check compability and click run as windows xp sp3. it works like charms for me. 

  7. is this that u need ?

    501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "CustomBox"; },{},{}
    

    for itemdb

    function	script	CustomBox	{
    	setarray .BoxItems[0],501,502,503;
    	
    	set .Random, getarraysize( .BoxItems );
    	getitem .BoxItems[ rand( .Random ) ], 1;
    	announce "["+strcharinfo(0)+"] has just obtained a ["+getitemname(.BoxItems[ .Random ])+"] from a Custom Box.",0;
    	end;
    }
    

    in script that u need to load

     

    edit 

    setarray .BoxItems[0],501,502,503;
    

    for item list random

×
×
  • Create New...