Search results

  1. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Well, as I mentioned a few pages back...my build of Reality doesn't have "foreign keys" at all in instances_deployable. Instead the would be foreign keys are indexes...that's why I posted the index page. Do you have index entries? Also, did you try remove all the foreign keys or just the one...
  2. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Well first off in my experience with modding, 95% of the time you put out a feature or a fix people will consume and use it without providing any feedback at all (especially if they got it working on their own) unless they don't get it working. The changes I made negate the point you are...
  3. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    I'm getting feeling that my Reality fix isn't working for some people because there have been some mistakes made along the way of your installations :p
  4. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    You did not make the correct changes to your server_publishObject... Refer to this post ^^
  5. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Well, there are always two types of owner ID's. You have the characterID which is limited to you current character (so if you die, you get a new ID, cause it's a new survivor) and the other is your Player UID. Kikyou2's changes utilize the Player UID so that your ownership remains persistent...
  6. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    You might have installed everything correctly, but your database is at fault. I fixed this early on by simply updating my schema. Beyond that idk how to help ya yet, as I'm still learning MySQL syntax. @Gweincalar After deleting the key, is it saving properly? If not, add the keys as index...
  7. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Bliss or Reality? If Bliss I can't really confirm it works or provide support beyond pointing toward database tweaks like La.usch.io's post. I guess I should edit my post to reflect that. @Matt2k When you say custom buildings, do you mean recipes you made or the standard base building recipes...
  8. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Unfortunately this won't get us very far. It may solve the immediate issue of the deletion but it's being deleted as a cleanup since the tent is not getting assigned a correct UID. It is being given an ID of 0, which according to the above (and to my logs) cannot happen. So the tent will still...
  9. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Tried this fix...then instead of tents simply not saving, you place them and the server removes them immediately after with this: 23:51:33 "DEBUG: Deleting object TentStorage with invalid ID at [6885.52,11462.5,0.000793457]"
  10. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    That should definitely help users who don't want to upgrade to Reality. I didn't mention this before but I have run into this problem after my testing. However I'm working on fixing the issue with tents as I post this.
  11. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Heh, you know you can upgrade the database DayZ.ST gives you to a Reality build right? I'm running DayZ.ST as well. I just upgraded the schema to 0.39...
  12. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Your issue seems, at this point, to be in the DB itself rather than the code. The code is trying to inject the deployable data into your table but it's failing because mySQL can't/won't accept it with the constraint error. But yeah, I'm still a newb at database stuff so the column data was my...
  13. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Not entirely sure, I'm still new to MySQL. I can tell you I'm running MySQL 5.5 though, so you got 1 up on me. Are you sure you successfully merged the Reality package all the way up to the 0.39 schema? I went back and tried my fix on a Bliss Hive at schema 0.30 and got the same error...
  14. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    It works on Vanilla Chernarus with Reality ;)
  15. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Oh sorry didn't notice that, will update the post... Had it backwards too, that's what I get for posting at 2am...fixed now. 2013-05-27 11:04:12 HiveExt: [Information] Method: 308 Params: 1:Land_Misc_Cargo2E:0:26939206:[296.057,[985.788,1891.97,0.105]]:[]:[]:4.311:9858189201296: 2013-05-27...
  16. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Not exactly, this is what he states: The assumption was that it was already there, so idk...some people can get confused. While I understood what to do, I know some people will fumble on this. Anyway, all I was saying was that this was the only thing I can see I differentiated on, other than...
  17. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    server_publishObject.sqf private ["_class","_uid","_charID","_object","_worldspace","_key","_code","_fuel"]; //[dayz_characterID,_tent,[_dir,_location],"TentStorage"] _charID = _this select 0; _object = _this select 1; _worldspace = _this select 2; _class = _this select...
  18. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    To be honest, I'm not sure. I don't know exactly WHY it works now, and have no idea why now as opposed to before. I may have made a change to another script that fixed it but I can't remember. I have a lot of different scripts running so it could be any one of them or combination of them that is...
  19. P

    [Release] BaseBuilding 1.2 Improvements 0.1 (better and editable Keycode, permanent Owner)

    Ok apparently it IS working fine when you remove... if (isServer) then { dayzPublishObj call server_publishObj; }; ...however it is really touchy. Sometimes when using other scripts they can break the Edit Code and Remove functions. However, they are fixed upon a relog. I actually got...
Back
Top