Jump to content

Haruka Mayumi

Content Moderator
  • Posts

    474
  • Joined

  • Last visited

  • Days Won

    26

Posts posted by Haruka Mayumi

  1. The reason that it isn't working is because of the variables on that code.
    Here's the simplified code for that.

    EDIT: This code won't work on maps without loadevent flags

    -	script	rmvbuff	-1,{
    
    OnPCLoadMapEvent:
    	if(@rmvmap$ == strcharinfo(3)) end;
    	//sc_end sc_spirit;
    	sc_end sc_gospel;
    	sc_end SC_POEMBRAGI;
    	sc_end SC_APPLEIDUN;
    	sc_end SC_ASSNCROS;
    	sc_end SC_WHISTLE;
    	sc_end SC_SERVICE4U;
    	//sc_end 37; // holy weapon
    	//sc_end 38; // holy armor
    	sc_end 187; // increase all stat
    	sc_end 194; // increase hit
    	sc_end 196; // increase flee
    	sc_end 198; // max hp increase
    	sc_end 199; // max sp increase
    	sc_end 200; // attach strength
    	sc_end 202; // increase def	
    	sc_end 214; // SC_SCRESIST
    	sc_end 175; // POEMBRAGI
    	sc_end 181; // SERVICE4U
    	specialeffect2 235;
    	@rmvmap$ = strcharinfo(3);
    	end; 
    }
  2. 4 hours ago, f_fman said:

    I gonna create one in the correct section, can some one delete this one,

     

    and sorry about that

    I moved it to the correct section. you even created another post on another WRONG SECTION.. please use report button next time.

  3. The problem is your option is skipping a space of random options.. 

    E.G: This will only show the Str + 1 because the Option 1 has no data in it.
    - Option 0: Str + 1
    - Option 1: None
    - Option 2:  Dex + 1

    Edit: You can check your inventory database to see how the random option looks when skipping.

  4. prontera,155,173,5	script	Give	94,{
    
    	if(getd("$Quest_"+get_unique_id())){
    		message strcharinfo(0),"Quest already done for this mac.";
    		end;
    	}
    	if(countitem(512) >= 10 && countitem(513) >= 10){
    		delitem 512,10;
    		delitem 513,10;
    		getitem 501,1;
    		setd "$Quest_"+get_unique_id(),getcharid(0);
    	} else
    		message strcharinfo(0),"Not enough items.";
    end;
    }

     

    • Love 1
  5. 12 minutes ago, kalabasa said:

    still the same im talking about this MvP drops just to be clear

    Capture.PNG

    You can't make those 100% because the MVP Drops is random unless it's only 1 item.. it shows how much your chance on getting each item randomly.. if you want to get all then you need to source modify it

    • Upvote 1
  6. #!/bin/bash
    run=1
    if [ "$run" -eq 1 ]; then
    if [ $(ps | grep -e login-server | wc -l) -eq 0 ]; then
    # Login server down
    ./login-server & > /dev/null
    fi
    if [ $(ps | grep -e char-server | wc -l) -eq 0 ]; then
    # Char server down
    ./char-server & > /dev/null
    fi
    if [ $(ps | grep -e map-server | wc -l) -eq 0 ]; then
    # Map server down
    ./map-server & > /dev/null
    fi
    sleep 10
    ./auto-restarter.sh &
    fi

    you can also cut each server in run it on screen.

    • MVP 1
×
×
  • Create New...

Important Information

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