Jump to content

Noctis

Members
  • Posts

    226
  • Joined

  • Last visited

Posts posted by Noctis

  1. 14 hours ago, Akkarin said:

    You don't even have VIP enabled..

    Remove the comments before VIP_ENABLE.

    oh lol thought it was not like the conf files to remove that lines //, but ty i'll try it again

     

    It works thx :D , but it only give 1 day  vip, i think is boring for you but you know/can tell me how to put it to choose between 10,20 and 30 days vip?

    if no its alright, ill just try a way to put it

  2. 6 minutes ago, Akkarin said:

    /// Uncomment to enable VIP system.
    //#define VIP_ENABLE

    /// Enable VIP script changes? (requires VIP_ENABLE)
    /// The primary effects of this are restrictions on non-VIP players, such as requiring
    /// a Reset Stone to change into third classes, paying more for equipment upgrades, and
    /// so forth. Note that the changes are based on euRO, not iRO.
    #define VIP_SCRIPT 0

  3. 2 hours ago, Akkarin said:

    I'm a tool. Should be -= or replace that line with this if you want to look them up in the command logs too:

    
    atcommand "@cash -" + .@cashperday;

    I also just did a quick search on the forums because i'm sure i've already seem something similar and found this:

     

     

    I put the atcommand "@cash -" + .@cashperday; and it worked, but Now Happen this

    errrrrrrrrr.png

  4. 1 hour ago, Akkarin said:

    If you mean exchanging Cash Points for extra VIP days, the above script won't work.

    A simple NPC that adds VIP time and subtracts #CASHPOINTS is very easy to make. 

    
    prontera,100,100,5	script	CashToVIP	123,{
    	.@cashperday = 100;
    	
    	mes "["+ strnpcinfo(1)+"]";
    	if(#CASHPOINTS == 0){
    		mes "You need Cash Points in order to buy VIP time";
    		close;
    	}
    	
    	switch(vip_status(1)){
    		case 0:
    			mes "You're not a VIP";
    			break;
    		case 1:
    			mes "You are a VIP";
    			break;
    	}
    	
    	mes "You currently have "+ #CASHPOINTS +" Cash Points.";
    	mes "Each VIP Day will cost you ^0000ff"+ .@cashperday +"^000000";
    	next;
    	
    	mes "["+ strnpcinfo(1)+"]";
    	if( #CASHPOINTS < .@cashperday ){
    		mes "You don't have enough Cash Points to purchase VIP Days";
    		close;
    	} else {
    		mes "Would you like to purchase/increase your VIP Days?";
    		switch(select(" - Nope: - Yeah!")){
    			case 1:
    				break;
    			case 2:
    				#CASHPOINTS - .@cashperday;
    				vip_time 1440;
    				dispbottom "Current Cash Points: "+ #CASHPOINTS;
    				dispbottom "VIP Expires: "+ vip_status(2);
    				break;
    		}
    		close;
    	}
    }

     

    tried that one yesterday but i have this error

    error.png

  5. First, yes, i searched first before, i tested all scripts of npcs who give vip for cash here in rathena and hercules, and no one works (for me), so plz, someone have a npc script who give vip days for cash plz?

  6. On 1/11/2017 at 4:55 AM, Helly said:

    http://www.mediafire.com/file/y18hli838m0mjil/553_Clothes_-_263_Hair_Color_Palettes.rar use this one, that download only have the update for that 3 Jobs hum dure you put the right Sprite? Cause it look like the GTL that is not fixed

    i downloaded the sprites in this post and put it in the right folders, downloaded that clothes and hair color, put the grf in DATA.ini, but is still bugged...

     

    SOLVED, i was with the wrong sprites lol, my bad, thanks!

     

    btw @bodystyle 1 with ministrel is not working, "@bodystyle failed"

  7. 1 hour ago, srhmike said:

    What diffs did you use?  I know when I tried to diff my 2015-11-04 client with using custom aura limits, it would crash off the get go.

    I don't see how the mmo would make the client crash, it would throw a server error, not client crash.  So that info is of no use.
    And DEP?  No, I don't think so.

    
    Data Execution Prevention (DEP) is a set of hardware and software technologies that perform additional checks on memory to help prevent malicious code from running on a system 
    
    
    Data Execution Prevention (or DEP) monitors programs to ensure that memory is being used safely. If a program tries using memory incorrectly, DEP closes it.

     

    All help is welcome. Im trying to help. Maybe he diff it wrong

  8. On 03/01/2017 at 5:38 PM, Playtester said:

    I don't think those are general rAthena issues, though, so they will probably be labelled invalid if posted on github. If skills would just disappear, it would have been reported much earlier.

    Chain Crush Combo is working fine too, just tested. So I cannot confirm any of these issues.

    Must be caused by some customization. Try to use latest rAthena from Github and then slowly apply your changes until the bug starts to occur to see what causes it.

    @Playtester already solved only  Kagerou: Wave/effects error  still happen

×
×
  • Create New...