Jump to content

M4karov

Members
  • Posts

    149
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by M4karov

  1. How do you calculate the remaining monsters? Checking all values of arrays.

    prontera,155,175,4	script	TestScript	69,{
    	
    	setarray .@mob_id, 1002, 1004, 1005;
    	setarray .@mob_qt,    1,    3,    8;
    	setarray .@mob_req,   7,    8,   10;
    	
    	for(; .@i < getarraysize(.@mob_id); .@i++){
    		
    		if(.@mob_qt[.@i] >=  .@mob_req[.@i]) {
    			dispbottom "You hunted down all the monsters on that map.";
    		}
    		else {
    			dispbottom "You still have to hunt down the following monsters:";
    			dispbottom "MonsterID: "+.@mob_id[.@i]+" Amount: "+.@mob_qt[.@i]+" Required quantity: "+.@mob_req[.@i];
    		}
    	}
    	end;
    }

     

  2. 4 minutes ago, utofaery said:

    I mean "Map Cell" not "Map"

    Map Cell  eg.. prontera,150,180

    Map eg.. Prontera

    2 different things

    it's like the vending script to limit which map cell can be vend upon and which cell are restricted from able to do so.

    I'm trying to learn how the emulator identifies water areas. And do something in that sense to be able to plant only where there is land, not to plant on sidewalks.

     

    But I understood what you wanted to say about just a few places, just like  @AnnieRuru sales system.

  3. 18 hours ago, utofaery said:

    2. Climate is missing?? 

    since you are doing plant thing ..

    weather is important

    eg.  when raining fewer produce?  or can't use fertilizer or anything?

     

    3. limit specific cell to which you can plant anything on.

    or certain map you so that people won't plant everywhere..

     

    4.  Day night cycle missing...

    faster growth day?

    no produce night??

    I am creating a rainfall system that also influences harvest time. As for the plants, you will have a mapflag to define where the seed can be planted.

     

    17 hours ago, AnnieRuru said:

    reminds me when I played The Sims 3 XD

    yeah all the vegetables that I plant in sims ...
    this reminds me, The sims 3 has sprinkles

    https://www.carls-sims-3-guide.com/skills/gardening/
    so if we install a sprinkles then we don't have to water it every day

     

    other than that, yeah, this would be awesome if this is part of housing instance script

    I'm looking at how to put a farm style map to use as a house instance.

     

    16 hours ago, lllaaazzz said:

    I think its cool to see this emulator being used for different things... this is the best game engine (w/e) ive ever played on and couldnt believe that it was open source 

    Really with a little knowledge and creativity you can do a lot in this emulator

    • Love 1
  4. I'm developing a server based on a game called Harvest Moon. Conclude the Farm system, it will accept trees, vegetables and animals.

    What do you think? Any suggestions?

    Content of the video in Portuguese.

     

    • Upvote 1
    • Love 2
    • Like 3
  5. Tenta criar seu próprio script usando pointshop e itemshop nativo do emulador. Tenta e posta aqui que eu te ajudo. Ou se não da uma procurada no forúm que você acha um monte de script usando esses comandos pra você ter como exemplo.

  6. Thanks for replying, but in case it would be by source same. No script.

    By script I had already done, wanted to change.

     

    function	script	F_Color	{
    	if(getarg(1) == "null")
    			return "";
    	setarray .@cores$[0], "amarelo", "^FFFF00", "azul", "^0000FF",
    						"branco", "^EEE9E9", "dourado", "^DAA520",
    						"cinza", "^696969", "laranja", "^FF7F00",
    						"marrom","^8B4726", "preto", "^000000",
    						"roxo", "^4527A0", "vermelho", "^FF0000", 
    						"verde", "^1B5E20";
    						 
    	.@cor$ = strtolower(getarg(1));
    	for(.@i = 0; .@i < getarraysize(.@cores$); .@i += 2)
    		if(.@cores$[.@i] == getarg(1))
    			return .@cores$[.@i + 1]  + getarg(0) + "^000000";
    	return getarg(1) + getarg(0) + "^000000";
    }

     

  7. My friend, you are in the wrong area. In case of your problem, you should open topic in the area of client support. And you should use English as the language of your posts.
     

    Quote

     

    Português:

    Meu amigo, você está na área errada. No caso do seu problema, você deve abrir tópico na área de suporte ao client. E deve usar o inglês como idioma de suas postagens.

     

     

×
×
  • Create New...