Thanks for sharing...it looks real nice+Rep
Thanks for sharing...it looks real nice+Rep
Last edited by troy23; 03-22-2008 at 03:04 PM.
im having same prob cant save items when i start im naked and i log on kill something get a item put it on then later i log and i log back in its no item on bag or on the char screen plssssssss help if can +2 rep
Dude this is pure win +Rep for ya
Love it chrispee!!! wating for the next!!!
Chrispee!
Im glad you are back. I love your work and I hope to see more of it. Welcome back![]()
Im having the same problem as well, including messages from Ascent. I Log in naked. When I do the welcome quest, I see the items on my chat screen, but not in inventory, just a bag. I did everything I was supposed to do to make it work according to instructions, also cleared my cache.
If anyone has a fix, please post it. I would greatly appreciate it!
Otherwise, looks GREAT Chrispee!!!
I can't seem to create a new character. When I try, I get disconnected. Anyone else have this problem? If so, how can I fix it?
Thanks.
EDIT: I think I know the problem, my playercreateinfo folder-thing is completely empty, even after importing the database. Unfortunately, I haven't the slightest clue as to what is supposed to be there.
Last edited by moosh101; 03-23-2008 at 05:17 PM.
nice repack rep+ you rock!!!!!
great work chrispee! your back again with some amazing stuff^^ +rep when I can
Graphic designer for crossfire-entertainment! And thx to Brightchild for my great sig
nobody never mentions the poor co workers![]()
Hey Chrispee any chance of a fix for Flying mounts in Outlands please? It seems a few people are having this issue. It shows the casting bar, but nothing mounts. Normal ground mounts work ok tho and thanks for this pack btw![]()
Awesome, thanks for this
hey when ever i create a new guy or login and get stuff it disipears and all that is left is underwere help! (but the repack kicks butt)
Orien,
You will need to add the table playeritems to your DB. Run this SQL query and it will add it, restart your ascent server and it will be fixed!
Code:/*DDL Information For - character.playeritems*/ ----------------------------------------------- Table Create Table ----------- ------------------------------------------------------------------------------------------ playeritems CREATE TABLE `playeritems` ( `ownerguid` int(10) unsigned NOT NULL DEFAULT '0', `guid` bigint(20) unsigned NOT NULL DEFAULT '0', `entry` int(10) unsigned NOT NULL DEFAULT '0', `wrapped_item_id` int(30) NOT NULL DEFAULT '0', `wrapped_creator` int(30) NOT NULL DEFAULT '0', `creator` int(10) unsigned NOT NULL DEFAULT '0', `count` int(10) unsigned NOT NULL DEFAULT '0', `charges` int(10) unsigned NOT NULL DEFAULT '0', `flags` int(10) unsigned NOT NULL DEFAULT '0', `randomprop` int(10) unsigned NOT NULL DEFAULT '0', `randomsuffix` int(30) NOT NULL, `itemtext` int(10) unsigned NOT NULL DEFAULT '0', `durability` int(10) unsigned NOT NULL DEFAULT '0', `containerslot` int(11) DEFAULT '-1' COMMENT 'couldnt find this being used in source', `slot` tinyint(4) NOT NULL DEFAULT '0', `enchantments` longtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`guid`), UNIQUE KEY `guid` (`guid`), KEY `ownerguid` (`ownerguid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci