Where to find this system?

Get Help on scripting in POL with configurations, config setups, script trouble shooting, etc.
Post Reply
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Where to find this system?

Post by Juzeph »

Image

The image shows the data in Portuguese, more gave to intender the system.

I look this system for implements it in mine shard.

It still consumes much memory and processing?
Last edited by Juzeph on Fri Jun 29, 2007 8:59 pm, edited 1 time in total.
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Post by Yukiko »

Buttons are graphics in the gumpart.mul file so you'd have to use a program like Photoshop to add the Portugese text to them
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Post by Juzeph »

I did not ask as it edits a verdata.mul or a gumpart.mul.



I wanted to know of that menu.
A Machado
Dano 3 - 18
Velocidade 35
Habilidade Usada Sword
Durabilidade 100 / 100
In English it would be.
An Axe
Dmg 3 - 18
Speed 35
Skill Sword
Durability 100 / 100
^^

It would like to make something similar in my server.

This system still consumes much processing and memory in the pol096??

My server it is made in Core 097.
Last edited by Juzeph on Fri Jun 29, 2007 8:59 pm, edited 1 time in total.
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Post by Yukiko »

Is that using the armslore skill to give you that gump?

Whatever skill is displaying that information is using a gump to show it to you. There are some nice gump functions written in the 0.97 Distro and there is a gump tutorial on the docs page of this site if you want to make gumps the pre-Distro 0.97 way.

Should not take a lot of processing or memory to display that kind of information.

I hope that helps.
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

I am not sure if you have tooltips enabled on your shard and want to edit them, or you want to know how to install them.

If you don't have tooltips, then look in the "Custom Script Releases" forum, and get the "Tooltip packet hook". The tooltips.src file contains only the bare packet hook. You will need to add the tests for each thing you want to display.

For example, here is the code that would display the line "locked" if a container is locked:

Code: Select all

		if ( xObject.IsA(POLCLASS_CONTAINER) )
			if ( xObject.locked )
				xDesc := xDesc + Html + "Locked" + "<br";
			endif
		endif
Add other lines to get and display the information you want. Each shard would have its own information, so there was no way to provide it all in one general purpose script.

The key to minimising the RAM growth is to shorten the data string being sent to the player each time. The less data, the less RAM growth. You can't stop it, but you can control it somewhat.
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Post by Juzeph »

Tanks, I am starting to intender.
Last edited by Juzeph on Fri Jun 29, 2007 8:59 pm, edited 1 time in total.
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Post by Juzeph »

Sorry, but...

How active the ToolTip?

Core 097, Made of the zero!! ^^
Last edited by Juzeph on Fri Jun 29, 2007 8:59 pm, edited 1 time in total.
Unfaithful
Neophyte Poster
Posts: 38
Joined: Mon Jun 11, 2007 1:35 pm

Post by Unfaithful »

packethook
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

You cannot just 'enable' tooltips.
You have code them with a packethook. That's what I posted above.
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Post by Juzeph »

Yes, I implemented megacliloc, but, exactly thus it does not appear no information in no item.
Last edited by Juzeph on Fri Jun 29, 2007 9:00 pm, edited 1 time in total.
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Post by MontuZ »

Did you enable AOS on the account and send the correct packet to enable AOS for the client?
Juzeph
New User
Posts: 23
Joined: Sun Apr 15, 2007 5:58 pm

Post by Juzeph »

yeah..

Code: Select all

Account
{
	Name	admin
	Password	admin
	Enabled	1
	Banned	0
	DefaultCmdLevel	test
	UOExpansion	AOS
	CProp	createAt s17 de Junho, 2007  02:00:00
	CProp	email sjuzeph@gmail.com
}
The version of mine uo is ML.
POL Core 097
a
^^

e o?
C:\POL\config\ServerSpecOpt.cfg
Last edited by Juzeph on Fri Jun 29, 2007 9:00 pm, edited 1 time in total.
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

But did you enable the AOS features in the core with servspecopt.cfg?

UOFeatureEnable=0x20
Post Reply