Jump to content

Rebel

Members
  • Content Count

    148
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Rebel


  1. 3 hours ago, keough said:

     

    Yes I'm using Gepard shield 3.0 is the script compatible?

     

    Yes. I am using 3.0 also. And yes the script is compatible. Check your script.c if you have the get_unique_id there.


  2. 2 hours ago, ThyroDree said:

    On the line 2131 on battle.c

                    case SN_SHARPSHOOTING:
                    case MA_SHARPSHOOTING:
                        skillratio += 100 + 50 * skill_lv;

                        if( sd->sc.data[SC_SOULLINK] && sd->sc.data[SC_SOULLINK]->val2 == SL_HUNTER)
                        skillratio *= 1.15;
                        break;

    case SN_SHARPSHOOTING:
    case MA_SHARPSHOOTING:
        if (sd->sc.data[SC_SOULLINK] && sd->sc.data[SC_SOULLINK]->val2 == SL_HUNTER)
            skillratio *= 1.15;
       else
            skillratio += 100 + 50 * skill_lv;
            break;


  3. 11 hours ago, keough said:

    Hello guys!

    Is there any chance to have a dual login limit using gepard shield last_unique_id on the account sql field.

    Dual login will only be available on towns! If you have 2 character in the same fields or outside towns you will be kick in the server.

    Anyone can help please? I am also willing to pay for this 

     

    Thank you and God Bless!

    This is the one im using..
    http://upaste.me/354250041b0a2c121


  4. 1 hour ago, ThyroDree said:

    Hello anyoen can help me when setting up my emulator and used ./configure , make sql then make plugins

     

    Make plugins gives me error, heres the error im getting.

    
    make  [1]: Entering Directory '/home/hercules/Trunk/src/plugins'
    make [1]: *** No rule to make target '../../plugins/sample.so', needed by 'sample'.  Stop.
    make [1]: Leaving directory '/home/hercules/Trunk/src/plugins'
    make: *** [plugins] Error 2

    Anyone??

    I think sample.so is missing in trunk/plugins .. also try running make clean first before make sql plugins


  5. 12 hours ago, Begin said:

    Salamat po sa pagtulong sir. May isa nalang pong mali. 

    Player 1 = PK OFF

    Player 2 = PK ON

    Yung Player 1 hindi nakaka atake which is tama po.

    Yung Player 2 naaatake nya yung Player 1 na naka PK Off. Dapat po hindi.

    Working naman yung sakin. Make sure inaapply mo yung patch na bago.


  6. 1 hour ago, Begin said:

    Hello Sir, gumana po yung mods pero dapat hindi po dapat nag tuturn on ng kusa yung PK State kapag pumunta ka sa PvP Maps.

    Tinry kong alisin yung line na to sir kung gagana, di rin pala.

        if((sd->state.pk_mode && map->list[sd->bl.m].flag.pvp)
                || (sd->state.pk_mode && map->list[sd->bl.m].flag.gvg)
                || (sd->state.pk_mode && map->list[sd->bl.m].flag.gvg_castle)
                || (sd->state.pk_mode && map->list[sd->bl.m].flag.gvg_castle)
                || (sd->state.pk_mode && map->list[sd->bl.m].flag.battleground))

    Pwede mo ba sir paganahin na pag pumunta ka ng PvP Map, hindi sya mag tuturn on ng kusa unless nag turn on ka sa town?

    Salamat sir!

    Sorry may kulang pala sa patch na nabigay ko.. Inupdate ko na yung sa post ko.


  7. function Pick {
    	.@warp_block = @warp_block;
    	@warp_block = 0;
    	.@select = select(@menu$);
    	if (getarg(0) == "") {
    		.@i = .@select;
    		.@map$ = getarg(.@i);
    	} else {
    		.@i = .@select-getarg(1,0);
    		.@map$ = getarg(0)+((.@i<10)?"0":"")+.@i;
    	}
    	if (.@warp_block & (1<<.@select)) {
    		message strcharinfo(PC_NAME),"This map is not enabled in "+(RENEWAL?"":"Pre-")+"Renewal.";
    +		close;
    		end;
    	}
    	.@x = @c[.@i*2];
    	.@y = @c[.@i*2+1];
    	deletearray @c[0],getarraysize(@c);
    	Go(.@map$,.@x,.@y);
    }
    function Restrict {
    	if ((getarg(0) == "RE" && !RENEWAL) || (getarg(0) == "Pre-RE" && RENEWAL)) {
    		if (getarg(1,0)) {
    			@warp_block = 0;
    			for (.@i = 1; .@i < getargcount(); .@i++)
    				@warp_block = @warp_block | (1<<getarg(.@i));
    		} else {
    			message strcharinfo(PC_NAME),"This map is not enabled in "+(RENEWAL?"":"Pre-")+"Renewal.";
    +			close;
    			end;
    		}
    	}
    	return;
    }

    try this.. just added close after message ....

×
×
  • Create New...

Important Information

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