Jump to content

[Outdated] [Release] Single Currency & Banking 1.1


Recommended Posts

Thank you,

I have tried to put this script onto an Overpoch Origins server and I can't get the coins into the database :(

Don't fancy doing one of them do you lol?

 

Sorry, i don't even have the time to asnwer all questions/request etc.

 

Be sure u have the right dll's if u stay with 1.1

 

i'm probably releasing ZSC 3.0 test phase this evening ( it's in a different post) . This will come with full detailed install instruction ( which is basicly standing there already).

 

This version will not need any custom dll.

 

Link to comment
Share on other sites

Can you not trade items for items with this mod(gem trader). Anyone have a good work around for a gem trader if this is so?

 

Also how do Ii move the hud down the screen

    <t size='0.9'> %14 </t><img size='0.8' align='right' image='dayz_code\gui\playerhud\icons\equip_safe_CA.paa'/>   <br/>

do i change those % signs?

Link to comment
Share on other sites

Hey Zupa..Im kinda new to modding. But i cant seem to get this working on my Overpoch Tavi server..Ive followed every step as best as i could, but im stuck on the Wait for host page.  Could i send you my Mission / Server PBOS ( Broken Down - I use Vilayer ) and you add your mod to this, Id be deffinitly willing to pay you for your time. Let me know, Thanks

 

Infact if anyone knows alot about scripting and whatnot, Id love to have the help from anyone  Thanks a bunch!

Link to comment
Share on other sites

Could anyone help me here please. I am running Overpoch Origins on Taviana I have installed SC fine but in the files is a Query.sql when I queried this before it messed my traders up and my weapon and ammo traders stopped working no idea why as I cant see anything that would really effect them.

 

The thing I notice is int(11) Im guessing that means instance 11 for cherno right? so I would change that to int(13) for Taviana or does int(11) mean something totally different? what could have messed my traders up? below I will past 3 .sql's that I add to my SQL database...

 

#1 QUERY:

 

SET FOREIGN_KEY_CHECKS=0;
 
DROP TABLE IF EXISTS `banking_data`;
 
CREATE TABLE `banking_data` (
  `PlayerUID` varchar(20) NOT NULL DEFAULT '0',
  `PlayerName` varchar(128) NOT NULL DEFAULT 'Null',
  `BankSaldo` bigint(24) NOT NULL DEFAULT '0',
  `LastUpdated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`PlayerUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
ALTER TABLE `character_data` ADD CashMoney int(11) NOT NULL DEFAULT 0 AFTER PlayerUID;
 
 
 
#2 SCDBQuery_TransferGoldCoins.sql
 
 
SET FOREIGN_KEY_CHECKS=0;
 
-- ----------------------------
-- Transfer goldcoins from `HeadShots` to `CashMoney` field
-- ----------------------------
 
UPDATE character_data
SET CashMoney = HeadshotsZ
 
 
3# SCDBQuery_TransferGoldCoins2.sql
 
/* 
Author: Storm
Description: Transfers players bank money from morality fiedld in player_data to banksaldo in banking_data 
 
*/
 
INSERT IGNORE INTO banking_data 
(PlayerUID, PlayerName)
(SELECT PlayerUID, PlayerName FROM player_data);
 
UPDATE banking_data
SET BankSaldo = (SELECT PlayerMorality FROM player_data WHERE PlayerUID = banking_data.PlayerUID);
Link to comment
Share on other sites

 

No Maintaining with the 999 hive 

We are going to revive axes maintain to solve this for the 999 version.

Im using this version, but I have plot pole management. For some reason new building objects are disappearing yet old ones are staying behind. Could it be something to do with coins.

 

150 decay limit and no sql evtns

Link to comment
Share on other sites

is there any coin system for the panthera map can only find napf and cherno

 

help a bro out 

 

They are all the same, just use your mission.sqm( and the one server sided to so u got traders/cities) and see that u edit the server_traders.sqf correctly. 

Link to comment
Share on other sites

Hi everybody.

 

I'm setting up an Epoch server that is already in running state with several addons. However, how can I add this? Cant do it as instructions say because those already installed addons needed modifications to same files.

 

ZSC 3.0 offers you a full install tutorial. ( this however doesn't have global banks but works with storage into objects (each with own capacity))

Link to comment
Share on other sites

Can someone please explain what the hives are all about?  

I'm guessing it's so anyone who plays on x server then joins my server will still have all their "coins" if that is so. anyway I can make it so it's a private hive? i could be totally wrong on this and making a fool of my self :P

Link to comment
Share on other sites

Can someone please explain what the hives are all about?  

I'm guessing it's so anyone who plays on x server then joins my server will still have all their "coins" if that is so. anyway I can make it so it's a private hive? i could be totally wrong on this and making a fool of my self :P

 

the hive is tha database and the connection from the server to the DB. 

 

They are all private. There is just some differentece in how they work.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Advertisement
×
×
  • Create New...