New Teleporting System + Script [UPDATED]

Re: [Release] New Teleporting System + Script [UPDATED]

i would prefer someone using cm.SendGetText fuction and make a new npc conversation function that can change name.
 
Re: [Release] New Teleporting System + Script [UPDATED]

This is a cool system, but I prefer the old way.
This is how I see it...It's easier to just scroll down a list and click on a map then to write out the name of the map.
Nevertheless, good release.
 
Re: [Release] New Teleporting System + Script [UPDATED]

i would prefer someone using cm.SendGetText fuction and make a new npc conversation function that can change name.
yeah thats possible i am trying to make that but u noe y its impossible?You have to type all the names that are available unless u use the method in MapleCharacterUlti.java or something lyk that inside only allows a few alphabet and if i am able to make 1 using that i may release it
 
Re: [Release] New Teleporting System + Script [UPDATED]

i would prefer someone using cm.SendGetText fuction and make a new npc conversation function that can change name.

That should be easy...

In NPCConversationmanager.java

Add:
Code:
import net.sf.odinms.client.MapleCharacterUtil.java;

Add:
Code:
	public boolean setName ( String name ) {
		if ( MapleCharacterUtil.isNameLegal( name ) ) {
			getPlayer().setName( name );
			getPlayer().saveToDB( true );
			return true;
		} else {
			return false;
		}
	}

Then you can just extract the method of using cm.SendGetText() being used already and call this method.

The user would probably have to relog too.
 
Re: [Release] New Teleporting System + Script [UPDATED]

That actually is really unique. No other server's really have it at the moment.
 
Re: [Release] New Teleporting System + Script [UPDATED]

I'm using Spinel for this NPC script atm and you need to relog after every use. Why?
 
Back