- Joined
- Oct 17, 2008
- Messages
- 3
- Reaction score
- 0
src\net\sf\odinms\scripting\npc Path
NPCConversationManager.java file input
Usage
num = cm.randvalue(10 input = One of the numbers 1 to 10)
NPCConversationManager.java file input
Code:
public static int randomNumber(int min, int max) {
return min + (int)(Math.random() * (max - min));
}
Usage
num = cm.randvalue(10 input = One of the numbers 1 to 10)
Last edited: