.go for ilshenar

Post your Custom Scripts or Packages.

Moderator: POL Developer

Post Reply
gundamwing84
Grandmaster Poster
Posts: 178
Joined: Tue Sep 08, 2009 1:57 am

.go for ilshenar

Post by gundamwing84 »

hiya guys, ive made a .go (called .go2) for the realm ilshenar. but when i compile i get the error "Variable _ILSHENAR_REALM has not been defined on line 33". i pretty much copied the normal .go, got new .go locations (called the file Goilshenar.cfg) and replaced all that needed replacing, but kept all script basics.
i cant seem to figure out why its showing that error, any help?
(i can also make this script and .go locations for this script public when this is fixed)

Code: Select all

use os;
use uo;
use util;
use cfgfile;

var Goilshenar_cfgfile;

program textcmd_go (character, text)
	Goilshenar_cfgfile := readconfigfile ("Goilshenar");
	if (!Goilshenar_cfgfile)
		SendSysMessage (character, "Error reading Goilshenar file");
		return;
	endif

	text := Lower (text);
	if (!text)
		DisplayTravelGump (character);
		return;
	endif

	var tname := lower (character.acctname) + " " + text;
	var elem := Goilshenar_cfgfile[tname];
	if (!elem)
		tname := "all" + " " + text;
		elem := Goilshenar_cfgfile[tname];
	endif

	if (!elem)
		SendSysmessage (character, "Unknown Location");
		return;
	endif

	MoveObjectToLocation( character, elem.x, elem.y, elem.z, realm := _ILSHENAR_REALM, flags := MOVEOBJECT_FORCELOCATION );
endprogram




///////////////////
//  If no text is supplied, a gump is shown that allows them to select a location
///////////////////

function DisplayTravelGump (character)
	var rootelem := FindConfigElem (Goilshenar_cfgfile, "Ilshenar");
	if (!rootelem)
		SendSysMessage (character, "Error finding root travel locations element");
		return;
	endif
	
	//Array of the names of the Goilshenar
	var loc_array := GetConfigStringArray (rootelem, "location");
	if (!len (loc_array))
		SendSysMessage (character, "No go locations set");
		return;
	endif
	
	//Lets turn this into an easier to read menu
	var max_pages := 1;
	var travel_locations := {};
	for i := 1 to len (loc_array)
		var thisloc := loc_array[i];

		if (thisloc == "PAGEBREAK")
			travel_locations.append ("PAGE BREAK");
			max_pages := max_pages + 1;
		else
			var elem := FindConfigElem (Goilshenar_cfgfile, "all " + thisloc);
			if (!elem)
				SendSysMessage (character, "Error finding element " + thisloc);
				return;
			endif
			var temparray := {elem.desc, elem.x, elem.y, elem.z};
			travel_locations.append (temparray);
		endif
	endfor
	
	var gump_layout := array {
		"page 0",
		"nodispose",
		"resizepic 50 50 2620 310 470",
		"text 70 59 40 0",
		"text 120 59 40 1",
		"page 1"
	};

	var gump_data := array {
		"Go",
		"Location"
	};
	
	var current_page := 1;
	var current_y := 85;
	for i := 1 to len (travel_locations)
		var thisloc := travel_locations[i];
		
		if (thisloc == "PAGE BREAK")
			if (current_page != max_pages and current_page != 0)
				gump_layout.append ("button 320 480 5601 5605 0 " + (current_page+1));
			endif

			current_page := current_page + 1;
			gump_layout.append ("page " + current_page);
			current_y := 85;

  			gump_data.append ("PAGE BREAK");
			if (current_page != 1)
				gump_layout.append ("button 70 480 5603 5607 0 " + (current_page-1));
			endif

		else
			gump_layout.append ("button 70 " + (current_y+5) + " 2118 2117 1 1 " + i);
			gump_layout.append ("text 100 " + current_y + " 40 " + (i+1));
			gump_data.append (thisloc[1]);
			current_y := current_y + 25;
		endif	
	endfor

	var gump_return := SendDialogGump (character, gump_layout, gump_data);
	if (!gump_return or !gump_return[0])
		SendSysMessage (character, "Canceled.");
		return;
	endif

	var selected_travel_loc := travel_locations[gump_return[0]];
	if (!selected_travel_loc or !len (selected_travel_loc))
		SendSysMessage (character, "Ack, this isn't supposed to happen!");
		return;
	endif
MoveObjectToLocation(character,selected_travel_loc[2],selected_travel_loc[3],selected_travel_loc[4],realm := _ILSHENAR_REALM,flags := MOVEOBJECT_FORCELOCATION );
	return;
endfunction
Thanks in advance,
Mat
Tomi
POL Developer
Posts: 478
Joined: Tue Feb 21, 2006 5:08 pm

Re: .go for ilshenar

Post by Tomi »

Take a look at uo.em for Realm constants

// Realms
const _DEFAULT_REALM := "britannia";
const REALM_BRITANNIA := _DEFAULT_REALM;
const REALM_ILSHENAR := "ilshenar";
const REALM_MALAS := "malas";
const REALM_TOKUNO := "tokuno";
const REALM_TERMUR := "termur";

its REALM_ILSHENAR not _ILSHENAR_REALM
gundamwing84
Grandmaster Poster
Posts: 178
Joined: Tue Sep 08, 2009 1:57 am

Re: .go for ilshenar

Post by gundamwing84 »

I had a look through my uo.em today, but it said nothing about realm constants.

the only thing i saw close was most lines had _DEFAULT_REALM at the end of it.
gundamwing84
Grandmaster Poster
Posts: 178
Joined: Tue Sep 08, 2009 1:57 am

Re: .go for ilshenar

Post by gundamwing84 »

found it mate, must've skipped over it this morning. thanks for your help
Post Reply