Results 1 to 6 of 6
  1. #1
    hydranoid800's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Behind you.
    Posts
    46
    Reputation
    10
    Thanks
    8

    Unhappy Item creation does not work [Club599's Source]

    Hello, this is about one of my first times posting here. I registered ages ago, but, to the point.
    I'm using Club599's source and I'm attempting to make an item. At first, everything seems fine. DB rebuilds fine, wServer rebuilds with the average 212 warnings... but then I open the private server. It all works. No errors in wServer or server, except for the occasional LAGGED! [blahblahblah]. So, I attempt /give {item name, in this case, Buggy Manor Key}. It says, "Success!" but nothing appears to be in my inventory. I'm somewhat new to C# coding, and I'm using SharpDevelop 5.0.3. That slot it was in won't show any 'Empty Item Slot' or anything. Once I replace it with something else, the slot is all reddy.

    Here is my code:

    Code:
      <Object type="0x1920B" id="Buggy Manor Key">
        <Class>Equipment</Class>
        <Item/>
        <Texture>
          <File>lofiObj2</File>
          <Index>0x29</Index>
        </Texture>
    	<SlotType>2</SlotType>
        <Description>A failed key produced from an attempt of Dr Terrible trying out his cloning machine.</Description>
    	<RateOfFire>1</RateOfFire>
    	<Sound>weapon/dirk</Sound>
    	<Soulbound/>
    	<Projectile>
    	  <ObjectId>Bone Dagger Shot</ObjectId>
    	  <Speed>160</Speed>
    	  <MinDamage>120</MinDamage>
              <MaxDamage>165</MaxDamage>
    	  <LifetimeMS>329</LifetimeMS>
    	</Projectile>
    	<BagType>4</BagType>
    	<OldSound>daggerSwing</OldSound>
    	<FameBonus>4</FameBonus>
      </Object>
    So, is it my code, the source or SharpDevelop? Please help because this happens with EVERY item I try to create. Thank you in advance.
    Last edited by hydranoid800; 04-22-2014 at 02:58 AM. Reason: Just a little code bug.

  2. #2
    Mitcheel's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Rotterdam
    Posts
    338
    Reputation
    10
    Thanks
    139
    My Mood
    Goofy
    I think you did something wrong here bro
    <Object type="0x1920B" id="Buggy Manor Key">

    (:

  3. The Following User Says Thank You to Mitcheel For This Useful Post:

    hydranoid800 (05-08-2014)

  4. #3
    hydranoid800's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Behind you.
    Posts
    46
    Reputation
    10
    Thanks
    8
    Is there something wrong with the ID? Changing now. If not, I'm going to be a noob into my own face.

  5. #4
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Quote Originally Posted by hydranoid800 View Post
    Is there something wrong with the ID? Changing now. If not, I'm going to be a noob into my own face.
    its your Object Type

    you can't have it as 0x1920B as it's not a hex decimal. It should be more like 0x1921
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  6. The Following User Says Thank You to Ahl For This Useful Post:

    hydranoid800 (05-08-2014)

  7. #5
    hydranoid800's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Behind you.
    Posts
    46
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by cool1119 View Post
    its your Object Type

    you can't have it as 0x1920B as it's not a hex decimal. It should be more like 0x1921
    Wait, so instead of <Number> to hex, it should be <Number> to hexadecimal? Thanks, because your solution worked!

    EDIT: Hex + Hexadecimal = Same thing...
    Last edited by hydranoid800; 04-23-2014 at 01:43 AM. Reason: Results, son, results!

  8. #6
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Quote Originally Posted by hydranoid800 View Post
    Wait, so instead of <Number> to hex, it should be <Number> to hexadecimal? Thanks, because your solution worked!

    EDIT: Hex + Hexadecimal = Same thing...
    A thank?
    /10chars
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  9. The Following User Says Thank You to Ahl For This Useful Post:

    hydranoid800 (05-08-2014)

Similar Threads

  1. Help does not work the source
    By Dimidrol in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 03-08-2012, 05:54 PM
  2. the hack does not work in the ca eu
    By Massimo1993 in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 12-23-2008, 05:20 AM
  3. My vip hack does not work
    By Thetoiletguy911 in forum General Hacking
    Replies: 2
    Last Post: 12-16-2008, 12:15 PM
  4. Does not work
    By nepalarmy in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 10-29-2008, 04:37 PM
  5. warrock does not work fore me?
    By Thetoiletguy911 in forum Suggestions, Requests & General Help
    Replies: 2
    Last Post: 06-06-2008, 08:23 AM