Jump to content

  •  

Pedroooo

Member Since 18 Mar 2015
Offline Last Active Jun 03 2017 09:39 PM
-----

Posts I've Made

In Topic: Monster Chase Range

09 May 2017 - 03:06 PM

Changing area_size I can now see the monster in the corner of the screen stopped without chasing me. He chases me only if he gets close.

 

 

The rest of the things I've changed have not changed at all. :(


In Topic: Episode System

29 March 2017 - 06:22 PM

What do I need to become a developer of the Hercules Staff and try to put this project forward?

you may check the guidelines and criteria here - http://herc.ws/board/contactus/

 

Do I need to fix some emulator bug to apply for the Development spot? Is there a specific number of fixes?


In Topic: Limit Array

29 March 2017 - 05:06 AM

It has almost no limit:

 

 

Size limit modified from 127 to ...2 billion!

 

For more info about arrays on Hercules, please check: http://herc.ws/board...2014-megapatch/

 

Perfect! Thanks.


In Topic: Episode System

29 March 2017 - 04:45 AM

What do I need to become a developer of the Hercules Staff and try to put this project forward?


In Topic: Script 1%

25 March 2017 - 05:38 AM


if (rand(1,100) <= 1) { // 1% de chance

   getitem 501,1;

} 

if (rand(1,100) <= 5) { // 5% de chance

   getitem 501,1;

} 

if (rand(1,100) <= 50) { // 50% de chance

   getitem 501,1;

} 

if (rand(1,2) == 1) { // 50% de chance

   getitem 501,1;

} 

 

Entendeu como é fácil?