Still having this problem... menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Still having this problem...

    ok i have a problem where my gameobjects arent saving. Every repack i use ive been getting this error when executing th .sql:

    [Err] 1115 - Unknown character set: 'cp1251'
    [Err] CREATE TABLE `gameobject_spawns` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `Entry` int(10) unsigned NOT NULL DEFAULT '0',
    `map` int(10) unsigned NOT NULL DEFAULT '0',
    `position_x` float NOT NULL DEFAULT '0',
    `position_y` float NOT NULL DEFAULT '0',
    `position_z` float NOT NULL DEFAULT '0',
    `Facing` float NOT NULL DEFAULT '0',
    `orientation1` float NOT NULL DEFAULT '0',
    `orientation2` float NOT NULL DEFAULT '0',
    `orientation3` float NOT NULL DEFAULT '0',
    `orientation4` float NOT NULL DEFAULT '0',
    `State` int(10) unsigned NOT NULL DEFAULT '0',
    `Flags` int(10) unsigned NOT NULL DEFAULT '0',
    `Faction` int(10) unsigned NOT NULL DEFAULT '0',
    `Scale` float NOT NULL DEFAULT '0',
    `stateNpcLink` int(10) unsigned NOT NULL DEFAULT '0',
    PRIMARY KEY (`id`),
    KEY `Map` (`map`)
    ) ENGINE=MyISAM AUTO_INCREMENT=103523 DEFAULT CHARSET=cp1251 COLLATE=cp1251_general_cs PACK_KEYS=0 ROW_FORMAT=FIXED COMMENT='Spawn System';

    I do the thing with the 1 after the id and i also do the saveall thing and nothing. it doesnt work. pls help me

    Still having this problem...
  2. #2
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    also when it gets to the gameobject table adding in the executing, i get a bunch of errors with the gameobject tables

  3. #3
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    CREATE TABLE `gameobject_spawns` (
      `id` int(11) unsigned NOT NULL auto_increment,
      `Entry` int(10) unsigned NOT NULL default '0',
      `map` int(10) unsigned NOT NULL default '0',
      `position_x` float NOT NULL default '0',
      `position_y` float NOT NULL default '0',
      `position_z` float NOT NULL default '0',
      `Facing` float NOT NULL default '0',
      `orientation1` float NOT NULL default '0',
      `orientation2` float NOT NULL default '0',
      `orientation3` float NOT NULL default '0',
      `orientation4` float NOT NULL default '0',
      `State` int(10) unsigned NOT NULL default '0',
      `Flags` int(10) unsigned NOT NULL default '0',
      `Faction` int(10) unsigned NOT NULL default '0',
      `Scale` float NOT NULL default '0',
      `stateNpcLink` int(10) unsigned NOT NULL default '0',
      PRIMARY KEY  (`id`),
      KEY `Map` (`map`)
    ) ENGINE=MyISAM AUTO_INCREMENT=2107173 /*!40100 DEFAULT CHARSET=cp1251 COLLATE=cp1251_general_cs PACK_KEYS=0 ROW_FORMAT=FIXED COMMENT='Spawn System'*/;
    should work like a charm...

  4. #4
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    kk i made a text document and ran it and got this:

    [Err] 1115 - Unknown character set: 'cp1251'
    [Err] CREATE TABLE `gameobject_spawns` (
    `id` int(11) unsigned NOT NULL auto_increment,
    `Entry` int(10) unsigned NOT NULL default '0',
    `map` int(10) unsigned NOT NULL default '0',
    `position_x` float NOT NULL default '0',
    `position_y` float NOT NULL default '0',
    `position_z` float NOT NULL default '0',
    `Facing` float NOT NULL default '0',
    `orientation1` float NOT NULL default '0',
    `orientation2` float NOT NULL default '0',
    `orientation3` float NOT NULL default '0',
    `orientation4` float NOT NULL default '0',
    `State` int(10) unsigned NOT NULL default '0',
    `Flags` int(10) unsigned NOT NULL default '0',
    `Faction` int(10) unsigned NOT NULL default '0',
    `Scale` float NOT NULL default '0',
    `stateNpcLink` int(10) unsigned NOT NULL default '0',
    PRIMARY KEY (`id`),
    KEY `Map` (`map`)
    ) ENGINE=MyISAM AUTO_INCREMENT=2107173 /*!40100 DEFAULT CHARSET=cp1251 COLLATE=cp1251_general_cs PACK_KEYS=0 ROW_FORMAT=FIXED COMMENT='Spawn System'*/;
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------

  5. #5
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gangstajosh55 View Post
    kk i made a text document and ran it and got this:

    [Err] 1115 - Unknown character set: 'cp1251'
    [Err] CREATE TABLE `gameobject_spawns` (
    `id` int(11) unsigned NOT NULL auto_increment,
    `Entry` int(10) unsigned NOT NULL default '0',
    `map` int(10) unsigned NOT NULL default '0',
    `position_x` float NOT NULL default '0',
    `position_y` float NOT NULL default '0',
    `position_z` float NOT NULL default '0',
    `Facing` float NOT NULL default '0',
    `orientation1` float NOT NULL default '0',
    `orientation2` float NOT NULL default '0',
    `orientation3` float NOT NULL default '0',
    `orientation4` float NOT NULL default '0',
    `State` int(10) unsigned NOT NULL default '0',
    `Flags` int(10) unsigned NOT NULL default '0',
    `Faction` int(10) unsigned NOT NULL default '0',
    `Scale` float NOT NULL default '0',
    `stateNpcLink` int(10) unsigned NOT NULL default '0',
    PRIMARY KEY (`id`),
    KEY `Map` (`map`)
    ) ENGINE=MyISAM AUTO_INCREMENT=2107173 /*!40100 DEFAULT CHARSET=cp1251 COLLATE=cp1251_general_cs PACK_KEYS=0 ROW_FORMAT=FIXED COMMENT='Spawn System'*/;
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------
    i copy pasted in a query and worked perfectly.... what MySQL server are you using? and what program are you using to import it?

  6. #6
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im using mysql 5.0 and im using navicat

  7. #7
    Chrispee's Avatar The True Repacker


    Reputation
    686
    Join Date
    Mar 2007
    Posts
    931
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    first delete gameobject_spawns from your db but if i where u i would backup the one u have in the db cause if u will run the query u will have just the table and no records in it


    CREATE TABLE `gameobject_spawns` (
    `id` int(11) unsigned NOT NULL auto_increment,
    `Entry` int(10) unsigned NOT NULL default '0',
    `map` int(10) unsigned NOT NULL default '0',
    `position_x` float NOT NULL default '0',
    `position_y` float NOT NULL default '0',
    `position_z` float NOT NULL default '0',
    `Facing` float NOT NULL default '0',
    `orientation1` float NOT NULL default '0',
    `orientation2` float NOT NULL default '0',
    `orientation3` float NOT NULL default '0',
    `orientation4` float NOT NULL default '0',
    `State` int(10) unsigned NOT NULL default '0',
    `Flags` int(10) unsigned NOT NULL default '0',
    `Faction` int(10) unsigned NOT NULL default '0',
    `Scale` float NOT NULL default '0',
    `stateNpcLink` int(10) unsigned NOT NULL default '0',
    PRIMARY KEY (`id`),
    KEY `Map` (`map`)
    ) ENGINE=MyISAM AUTO_INCREMENT=2107173 /*!40100 DEFAULT CHARSET=cp1251 COLLATE=cp1251_general_cs PACK_KEYS=0 ROW_FORMAT=FIXED COMMENT='Spawn System'*/;




  8. #8
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm i just looked in my db and noticed there was no gameobject_spawns there

  9. #9
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still having this problem :/

  10. #10
    waymirec's Avatar Member
    Reputation
    49
    Join Date
    Jan 2008
    Posts
    155
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try not specifying the default charset..
    Code:
    CREATE TABLE `gameobject_spawns` (
      `id` int(11) unsigned NOT NULL auto_increment,
      `Entry` int(10) unsigned NOT NULL default '0',
      `map` int(10) unsigned NOT NULL default '0',
      `position_x` float NOT NULL default '0',
      `position_y` float NOT NULL default '0',
      `position_z` float NOT NULL default '0',
      `Facing` float NOT NULL default '0',
      `orientation1` float NOT NULL default '0',
      `orientation2` float NOT NULL default '0',
      `orientation3` float NOT NULL default '0',
      `orientation4` float NOT NULL default '0',
      `State` int(10) unsigned NOT NULL default '0',
      `Flags` int(10) unsigned NOT NULL default '0',
      `Faction` int(10) unsigned NOT NULL default '0',
      `Scale` float NOT NULL default '0',
      `stateNpcLink` int(10) unsigned NOT NULL default '0',
      PRIMARY KEY  (`id`),
      KEY `Map` (`map`)
    )

  11. #11
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ill try that code when its done executing. trying a 2.4.1 repack and getting that issue wih my world.gameobject_spawns saying it doesnt exist. ive gotten 35399 errors all with my world.gameobject_spawns

  12. #12
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    kk just tried that code got the same error and got this:

    [Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 19

  13. #13
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any ideas??

  14. #14
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gangstajosh55 View Post
    kk just tried that code got the same error and got this:

    [Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 19
    post line 1-30 of the file you were trying to execute...

  15. #15
    gangstajosh55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried executing a txt file with this in it:

    CREATE TABLE `gameobject_spawns` (
    `id` int(11) unsigned NOT NULL auto_increment,
    `Entry` int(10) unsigned NOT NULL default '0',
    `map` int(10) unsigned NOT NULL default '0',
    `position_x` float NOT NULL default '0',
    `position_y` float NOT NULL default '0',
    `position_z` float NOT NULL default '0',
    `Facing` float NOT NULL default '0',
    `orientation1` float NOT NULL default '0',
    `orientation2` float NOT NULL default '0',
    `orientation3` float NOT NULL default '0',
    `orientation4` float NOT NULL default '0',
    `State` int(10) unsigned NOT NULL default '0',
    `Flags` int(10) unsigned NOT NULL default '0',
    `Faction` int(10) unsigned NOT NULL default '0',
    `Scale` float NOT NULL default '0',
    `stateNpcLink` int(10) unsigned NOT NULL default '0',
    PRIMARY KEY (`id`),
    KEY `Map` (`map`)
    )

Page 1 of 2 12 LastLast

Similar Threads

  1. [How-To] Issues with sniping and nox gps, anyone else having this problem?
    By hphln in forum Pokemon GO Hacks|Cheats
    Replies: 5
    Last Post: 07-26-2016, 11:39 AM
  2. [Auction House] Anyone Else Have This Problem?
    By xRaBBiTx in forum Diablo 3 General
    Replies: 4
    Last Post: 05-26-2012, 03:21 AM
  3. I have a problem working this.
    By Dankone in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 11-24-2007, 05:26 PM
  4. Anyone else having this particular problem?
    By D3m0n1ca in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 09-09-2007, 05:48 PM
All times are GMT -5. The time now is 03:43 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search