Jump to content

maxine02

Members
  • Posts

    58
  • Joined

  • Last visited

Posts posted by maxine02

  1. 1 hour ago, louigui0224 said:

    hi guys i just want to asak if if is it possible to have 2 woe a day?because im currently using euphys woe setter but i cant set 2 woe a day.

    You can add multiple castle on euphys woe controller.

  2. 1 hour ago, SandroRios said:

    Now it only drop 1 meteor at any skill level. ( lv 10 skill should drop 7 meteor's )

    hmmm. never notice that, since I'm spamming the skill. hmmm. 

     

    tried this and got 4 meteor only.

    83,15000,2000:3000:3000:4000:4000:5000:5000:6000:6000:7000,0,1000:4000:1000:4000:1000:4000:1000:4000:1000:4000,5000,0

     

  3. On 2/17/2017 at 10:37 PM, Emistry said:
    
    -	script	antibot	-1,{
    		
    	function        GetString       {
    		if( getarg(0) & 1 ) setarray .@List$[ getarraysize( .@List$ ) ],"1","2","3","4","5","6","7","8","9";
    		if( getarg(0) & 2 ) setarray .@List$[ getarraysize( .@List$ ) ],"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z";
    		if( getarg(0) & 4 ) setarray .@List$[ getarraysize( .@List$ ) ],"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z";
    		if( getarg(0) & 8 ) setarray .@List$[ getarraysize( .@List$ ) ],"!","@","#","$","%","^","&","*","(",")","-","=","/","+";
    		 
    		set .@Str$,"";
    		while( getstrlen( .@Str$ ) < getarg(1) )
    			set .@Str$,.@Str$ + .@List$[ rand( getarraysize( .@List$ ) ) ];
    		return .@Str$;
    	}
     
    	OnCheck:
    		switch( rand(2) ){
    			case 0:
    				sc_start sc_berserk, 1000000000, 1;
    				set .@String$,GetString( 15,rand(5,10) );
    				mes "Input the ^FF0000RED COLOUR^000000 part";
    				mes "^0000FF"+GetString( 15,rand(5,10) )+"^FF0000"+.@String$+"^0000FF"+GetString( 15,rand(3,10) )+"^000000";
    				input .@Input$;
    				if( .@Input$ != .@String$ ){
    						mes "Wrong..";
    						atcommand "@kick "+strcharinfo(0);
    				}
    				sc_end sc_berserk;
    				break;
    			case 1:
    				sc_start sc_berserk, 1000000000, 1;
    				set .@A,rand(1000);
    				set .@B,rand(1000);
    				mes "If A = "+.@A+"   B = "+.@B;
    				switch( rand(4) ){
    					case 0:
    						set .@Answer,.@A + .@B;
    						mes "How many is A + B ?";
    						break;
    					case 1:
    						set .@Answer,.@A - .@B;
    						mes "How many is A - B ?";
    						break;
    					case 2:
    						set .@Answer,.@A * .@B;
    						mes "How many is A * B ?";
    						break;
    					case 3:
    						set .@Answer,.@A / .@B;
    						mes "How many is A / B ?";
    						break;
    				}
    				input .@Input;
    				if( .@Input != .@Answer ){
    					mes "Wrong";
    					atcommand "@kick "+strcharinfo(0);
    				}
    				sc_end sc_berserk;
    				break;
    		}
    		close2;
    		
    	OnPCLoginEvent:
    		addtimer ( 60 * 60000 ), strnpcinfo(3)+"::OnCheck";
    		end;
    }

    try this.

    What if I want it to be on certain map only? 

    I tried to add this 

    OnCheck:
    		getmapxy(@map$, @xb, @yb, 0 );
    		if(@map$ != "abyss_03") end;

    But, the antibot is not showing anymore..

  4. hmm.

     

     

    I'm trying to put countdown on Number of mins after logging before collecting prize.
    How can I do this?


    Replace sleep2 with a countdown.

     

    hmmm. I have this currently

    message strcharinfo(0),"You need to be online for "+ .Rest +" minutes to get your reward.";

    I want  the  .Rest  which is 180minutes becomes 120minutes after 60minutes of login doing @loginreward 

    First login it will say You need to be online for 180 minutes to get your reward.
    then after 60mins, using @loginreward will say
    You need to be online for 120 minutes to get your reward.
    Something like that. sorry if my explanation is not that good.

  5.  

    I'm using it in hercules, when I create a char a try to log,  it gives me the 2nd day prize. Why is that? thanks for this script!

     what version of script are you using (numbers don't say latest) im 99% sure i fixed this bug already

     

    I'm using the 1.59 version in the first link. Thanks for this!

  6. sorry for necroing, i have this rewrite rule RewriteRule ^([a-zA-Z0-9]+)/$ index.php?module=$1  but It only works with domain/main

     

    I want to have a clean url like this domain/main/downloads 

×
×
  • Create New...