Minidump files from 25-06-16

Bug reports and feature requests. New features can only be added to the current development version. Bug-fixes may be back-ported.

Current release: 099 / Current development: 100
Post Reply
Harley
Forum Regular
Posts: 360
Joined: Sat Mar 18, 2006 1:41 am
Location: Germany

Minidump files from 25-06-16

Post by Harley »

Hey guys, I saw that you didn't look and didn't help to others with POL Core and UO in general.
viewtopic.php?f=46&t=5668

So.. if you like it - let it be, but!
After core update, that I made yesterday, I have today a filedumps from core-MOTD system.
My shard didn't have new

Code: Select all

Armor 0x1F022
{
Name intrinsicshield
Graphic 1
MaxHP 1
SaveOnExit 0
}
I added 30 min ago it to itemdesc.cfg.
After my connection to the game, I have some strange dumps from MOTD system
Here is MOTD script. It is activated from logon.ecl when character enter the game:

Code: Select all

//
// Message Of The Day
//
// MOTD.SRC
//
// Shows the message-of-the-day in a "tips" window :)
//
// PLAYER command
//
// Creator: Myrathi
// Created: 24/05/2000 --:--
// Updated: 23/01/2002 11:11
// <tjh@myrathi.co.uk>
//
// Editing: Jouni "Mintus" Airaksinen
// Updated: 2003-01-12
// <mintus@bluecave.net>
//

use uo;

include "../../utilsGumps";

var me;

program textcmd_motd(who)

	// Check to see if it's ICP calling this script
	// if so, who[1] holds "ICP"
	// and... who[2] holds <player> or '-1' (test run)
	//
	if (who[1] == "ICP")
		me := who[2];
	else
		me := who;
	endif

	// Check for ICP doing a "test run". If so, return "I'm here!" :-)
	if (me == -1)
		return 1;
	endif

	var text := GetCommandHelp( me, "motd" );
	if ( !text )
		text := "There is no MOTD for today.";
	endif
//	var res := SendStringAsTipWindow( me, text );
  //var res := SendStringAsHtmlWindow(me, text, "Message Of The Day");
	SendStringAsHtmlWindow(me, text, "Message Of The Day");

	return 1;
endprogram
Include:

Code: Select all

use uo;
use os;
use util;

include ":const:const_public/client";


function SendStringAsHtmlWindow(who, text, title := "Message Of The Day")

	var data := array(
		"page 0",
		//"nomove",
		"nodispose",
		//"noclose",
		"resizepic 40 40 5054 320 450",
		"tilepic 56 52 5357",
		"tilepic 65 49 4032",
		"text 109 50 62 0",
		"htmlgump 52 110 296 365 1 1 1",
		"text 120 75 89 2",
		"text 285 50 89 3",
		"text 285 75 89 4",

		"button 208 78 2117 2117 1 0 1", // 2088
		"button 330 56 2103 2104 1 0 2",
		"button 330 81 2103 2104 1 0 3"
	);
 
	var lines := array(
		title,
		text,
		"Latest news:",
		"Site",
		"Forum"
	);

	//return SendDialogGump( who, data, lines );
 
	var mode := SendDialogGump( who, data, lines );
	mode := mode[0];
	case(mode)
		1:
			return OpenURL(who, GetGlobalProperty( "LastestSiteNews" ) );
		2:
			return OpenURL(who, "site");
		3:
			return OpenURL(who, "forum");
		default:
			return;
		endcase
 
endfunction

Code: Select all

Staff: Neon / admin entered the game!
Unhandled Exception! Minidump started...

##########################################################
Current StackBackTrace
StackWalker::ShowCallstack - 0x14025bae4
  j:\not_games\!pol compiller\polserver-master\lib\stackwalker\stackwalker.cpp : 1047
Pol::Clib::HiddenMiniDumper::print_backtrace - 0x1402510cf
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\mdump.cpp : 282
Pol::Clib::HiddenMiniDumper::TopLevelFilter - 0x140250cf4
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\mdump.cpp : 195
UnhandledExceptionFilter - 0x7ff849347e1e
  (filename not available)
memset - 0x7ff84c19d998
  (filename not available)
_C_specific_handler - 0x7ff84c185b26
  (filename not available)
_chkstk - 0x7ff84c199afd
  (filename not available)
RtlImageNtHeaderEx - 0x7ff84c124fe9
  (filename not available)
KiUserExceptionDispatcher - 0x7ff84c198c0a
  (filename not available)
Pol::Bscript::Executor::getParamImp - 0x140213b2d
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 304
Pol::Bscript::Executor::getParam - 0x140212ed1
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 376
Pol::Module::UOExecutorModule::mf_SendGumpMenu - 0x1401ea8c1
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\module\uomod2.cpp : 978
Pol::Bscript::Executor::execFunc - 0x140211052
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 830
Pol::Bscript::Executor::ins_func - 0x140218253
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 2265
Pol::Bscript::Executor::execInstr - 0x1402115e5
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 3360
Pol::Core::run_ready - 0x1400c714d
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\scrsched.cpp : 117
Pol::Core::step_scripts - 0x1400c9565
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\scrsched.cpp : 312
Pol::Core::scripts_thread - 0x14008f6ab
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\pol.cpp : 619
Pol::threadhelp::run_thread - 0x14024fa32
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\threadhelp.cpp : 118
Pol::threadhelp::thread_stub2 - 0x14024fc7d
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\threadhelp.cpp : 178
_callthreadstartex - 0x14027f69b
  f:\dd\vctools\crt\crtw32\startup\threadex.c : 376
_threadstartex - 0x14027f842
  f:\dd\vctools\crt\crtw32\startup\threadex.c : 354
BaseThreadInitThunk - 0x7ff84c058102
  (filename not available)
RtlUserThreadStart - 0x7ff84c14c5b4
  (filename not available)
##########################################################
##########################################################
Unhandled Exception! Writing Minidump file.
Post this file with explanation and last lines from log files on http://forums.polserver.com/tracker.php for the development team.
Saved dump file to '20160625132405-0.dmp'

Last Script: pkg/player/Communication&Messages/news/banner/motd/textcmd/player/motd.ecl PC: 96
##########################################################
20160625132405-0.dmp
(105.32 KiB) Downloaded 193 times
Tell me, if you need something to add to solved this problem!

With best regards!
Harley
Forum Regular
Posts: 360
Joined: Sat Mar 18, 2006 1:41 am
Location: Germany

Re: Minidump files from 25-06-16

Post by Harley »

And another one after using old pol-core Staff command .info (info.src) with old gumps code.

Code: Select all

Unhandled Exception! Minidump started...

##########################################################
Current StackBackTrace
StackWalker::ShowCallstack - 0x14025bae4
  j:\not_games\!pol compiller\polserver-master\lib\stackwalker\stackwalker.cpp : 1047
Pol::Clib::HiddenMiniDumper::print_backtrace - 0x1402510cf
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\mdump.cpp : 282
Pol::Clib::HiddenMiniDumper::TopLevelFilter - 0x140250cf4
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\mdump.cpp : 195
UnhandledExceptionFilter - 0x7ff849347e1e
  (filename not available)
memset - 0x7ff84c19d998
  (filename not available)
_C_specific_handler - 0x7ff84c185b26
  (filename not available)
_chkstk - 0x7ff84c199afd
  (filename not available)
RtlImageNtHeaderEx - 0x7ff84c124fe9
  (filename not available)
KiUserExceptionDispatcher - 0x7ff84c198c0a
  (filename not available)
Pol::Bscript::Executor::getParamImp - 0x140213b2d
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 304
Pol::Bscript::Executor::getParam - 0x140212ed1
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 376
Pol::Module::UOExecutorModule::mf_SendGumpMenu - 0x1401ea8c1
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\module\uomod2.cpp : 978
Pol::Bscript::Executor::execFunc - 0x140211052
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 830
Pol::Bscript::Executor::ins_func - 0x140218253
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 2265
Pol::Bscript::Executor::execInstr - 0x1402115e5
  j:\not_games\!pol compiller\polserver-master\pol-core\bscript\executor.cpp : 3360
Pol::Core::run_ready - 0x1400c714d
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\scrsched.cpp : 117
Pol::Core::step_scripts - 0x1400c9565
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\scrsched.cpp : 312
Pol::Core::scripts_thread - 0x14008f6ab
  j:\not_games\!pol compiller\polserver-master\pol-core\pol\pol.cpp : 619
Pol::threadhelp::run_thread - 0x14024fa32
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\threadhelp.cpp : 118
Pol::threadhelp::thread_stub2 - 0x14024fc7d
  j:\not_games\!pol compiller\polserver-master\pol-core\clib\threadhelp.cpp : 178
_callthreadstartex - 0x14027f69b
  f:\dd\vctools\crt\crtw32\startup\threadex.c : 376
_threadstartex - 0x14027f842
  f:\dd\vctools\crt\crtw32\startup\threadex.c : 354
BaseThreadInitThunk - 0x7ff84c058102
  (filename not available)
RtlUserThreadStart - 0x7ff84c14c5b4
  (filename not available)
##########################################################
##########################################################
Unhandled Exception! Writing Minidump file.
Post this file with explanation and last lines from log files on http://forums.polserver.com/tracker.php for the development team.
Saved dump file to '20160625133600-0.dmp'

Last Script: pkg/staff/staff-commands/info-cmds/extcmd/infopg.ecl PC: 403
##########################################################
20160625133600-0.dmp
(96.53 KiB) Downloaded 201 times
Post Reply