Jump to content

Rynbef

Forum Moderator
  • Posts

    898
  • Joined

  • Last visited

  • Days Won

    21

Posts posted by Rynbef

  1. Nice work. My favorite is the second one but the other two looks nice too. The blue roofs fit perfertly to the green and the white leaves of the trees. It looks much better than the original.

    [-] I missing some details or models out of the middle. Like trees, stones or else. The walls on the middle looks not really good the textures not well choosen. The border looks too clean it should have a few small plants, stones or else.

    My voting:
    First one: 6/10
    Second one: 8/10
    Third one: 7/10

    * It's just my opinion. It shoulnd attack you :) *

     

    Rynbef~

    • Upvote 1
  2. Ihr könnt auch eine eigene ItemInfo verwenden. Dazu beim N.E.M.O einfach den entsprechende Haken setzen und dort den Namen der richtigen ItemInfo.lub eintragen. Meist sollte das Problem so behoben sein. Ansonsten darauf achten, dass "read lua before lub" deaktivert ist. Wenn man sich nicht sicher ist einfach den Inhalt der ItemInfo in .Lub und .Lua speichern. Bei mir wird die ItemInfo.lub und nicht die ItemInfo_sak.lub gelesen.

    Kann auch an der ClientInfo.xml liegen. Dort mal versuchen den Language Type zu ändern. Manchmal ist auch eine ItemInfo in der GRF. Das Probleme hattte ich auch mal. Einfach raus loschen. Viel Erfolg!

    Rynbef~

    • Upvote 1
  3. Now Im on my wiindows pc thereforce I can leave an example for you.

    //.@string = are the input string
    set .@string,strcharinfo(1); //Name of the party
    
    for (set .@i,0; .@i<getstrlen(.@string); .@i++){
    	if(charat(.@string[.@i]) == "#"){
    		dispbottom "You have a # in your party name!";
    		//Or call function
    		//Or .@specialchar++;
    	}
    }
    //if(.@specialchar){
    //	mes "You have "+.@specialchar+" # in your party name.";
    //}
    end;

     

    Rynbef~

  4. U will need to change your Apache/Nginx Port(Web Port 80). As example u use Apache. U can change ur port at /etc/apache2/ports.conf. Change "Listen 80" to another port. As example "Listen 32147". Now u can access ur webpage or thor folder on "http://yourdomain.com:32147/patcher/".

     

    Rynbef~

    • Upvote 1
  5. Just remove ckeckidle()

    -	script	HorlyPoints	-1,{
    
    OnInit:
    	end;
    
    OnMinute01:
    	query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid);
    	for(set .@i,0; .@i<getarraysize(.@accid); .@i++){
    		attachrid(.@accid[.@i]);
    		if(!getstatus(SC_JAILED)){
    			if (!checkvending() && !checkchatting()){
    				dispbottom "[Hourly Point]: You've received a point.";
    				getitem xxx,1;
    			}
    		}
    		detachrid;
    	}
    	end;
    }

    Rynbef~

  6. This simple script works fine:

    -	script	HorlyPoints	-1,{
    
    OnInit:
    	end;
    
    OnMinute01:
    	query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid);
    	for(set .@i,0; .@i<getarraysize(.@accid); .@i++){
    		attachrid(.@accid[.@i]);
    		if(!getstatus(SC_JAILED)){
    			if (!checkvending() && !checkchatting() && !checkidle()){
    				dispbottom "[Hourly Point]: You've received a point.";
    				getitem xxx,1;
    			}
    		}
    		detachrid;
    	}
    	end;
    }

    Rynbef~

  7. If u use message u will need to add the prefix. (@ or #) at the begin. Message also contains command args.

    	//If cannot use atcomamnd while talking with NPC [Kichi]
    	if (type == 1 && sd->npc_id && sd->state.disable_atcommand_on_npc && !strcmp(message,"@refresh2"))
    		return false;

    And move it under:

    	// skip 10/11-langtype's codepage indicator, if detected
    	if ( message[0] == '|' && strlen(message) >= 4 && (message[3] == atcommand_symbol || message[3] == charcommand_symbol) )
    		message += 3;

    To skip |00 at the begin of the message.

     

    Rynbef~

    • Upvote 1
  8. //quick option to disable all renewal option, used by ./configure
    #define PRERE
    #ifndef PRERE
    
    /// Leave this line to enable renewal specific support such as renewal formulas
    #define RENEWAL

     

    U will just need to remove // before "#define PRERE" to disable all Renewal Features.

     

    Rynbef~

    • Upvote 1
×
×
  • Create New...