Das stimmt nicht, man muss es noch irgendwo anders ändern
Aber danke für die Hilfe
Beiträge von HelperLee
-
-
Hey Liebe NN Community,
Ich habe 3 Fragen die ich euch gerne stellen würde.
Die Erste Frage:
Wie tuhe ich die Public Cop Slots raus ?
Die Zweite Frage:
Wo finde ich ein Tutorial für ein verbessertes HUD und ein Statusbar ?
Die Dritte Frage:
Hat jemand ein Sammelthemer für Viele Scripts Version 4.4r3 oder 4.4 ?
Die Vierte Frage:
Wie tuhe ich 2 Skin Dateien einfügen wie z.b Hunter, Hemmt usw.
Die Fünfte Frage:
Wie mach ich das wenn man eine Taste drückt kommt eine Warnung oder ein Anhaltsound ?Das waren meine Fragen, ich bedanke mich für Antworten
MFG LEE stick
-
WIE SOLL ICH DIE SOUND DATEIN NENNEN ?
-
Hey Liebe NN Community,
Ich hab mal eine Frage ob mir jemand erklären kann,
wie mann extra Sounds einfügt also was ich in die Description und in die KeyHandler einfügen muss, Sound hab ich schon hätte es gerne auf F ohne Shift.Danke im Voraus
-
Hat sich erledigt Thema kann geschlossen werden !
-
Ich werde dir Gleich helfen
-
Hey Leute,
Ich habe zurzeit Zwei Probleme, mit meiner alten und neuen Statusbar.
Ich habe eine neue Statusbar eingefügt die hier:
Spoiler anzeigen
Danach ging ich auf den Server und siehe da die Neue und Alte Statusbar waren auf einander.
---------------------------------------------------------------------------------------------------------------------------------------------
Das nächste wäre.
Wie füge ich:
Essen
Trinken
Geld
in die neue Statusbar ein und wie aktualisieren sie sich AutomatischMFG
Lee Meow -
-
Ich danke dir für die Hilfe hat geklappt
-
Hier bitte in Rar Datei weil phh´.
Hier klicken für Download
Config_Weapons.rar@PierreAmyf
-
Der Fehler
Spoiler anzeigen
16:44:16 Warning Message: File mpmissions\Tanoa_Life.[lexicon]Tanoa[/lexicon]\config\Config_Weapons.hpp, line 1183: Config: '-' encountered instead of ','
16:44:16 Warning Message: Config : some input after EndOfFile.kommt immer noch
! -
Hey Leute,
Ich suche schon verzweifeld nach den Zeilenfehler ich find aber keinen deshalb die Frage ob jemand das sich mal anguckt und mir vlt. Hilft.
Hier Der Link:
/* * Format: * level: ARRAY (This is for limiting items to certain t - Pastebin.comUnd hier der Error:
Spoiler anzeigen
22:01:39 Unsupported language English in stringtable
22:01:39 Unsupported language English in stringtable
22:01:39 Warning Message: File mpmissions\Tanoa_Life.[lexicon]Tanoa[/lexicon]\config\Config_Weapons.hpp, line 1183: Config: '-' encountered instead of ','
22:01:39 Warning Message: Config : some input after EndOfFile. -
Brauche jemanden der mal kurz auf mein TS kommt und mir bei meiner Datenbank hilft.
Habe alles auf nen Root von NTECH-IT Datenbank und Server.Würde auch nen Fünfer geben
wbb
-
Immer wenn ich den Server joine kommt die Nachricht Waiting for the Server to be ready ich glaub des ist ein error
RPT Logs:
AngehangenextDB2 Logs:
Angehangen -
Ich krieg immer diesen Fehler wenn ich versuche auf den Server joine.
RPT Logs:
extDB2 Logs:
-
Muss man nicht da wie im diesen tutorial machen ?
-
br1zey kannst du kurz auf dem Teamspeak kommen.
-
HeyHo Leute,
Ich habe mal ne Frage wie man in Altis Life 4.4 (das normale 4.4) Polizei Ränge hinzufügt und umbenennt. Ich hatte gestern ein Tutorial gefunden hab dann auch die Datenbank verändert und haben dann auch die SHOPs geändert.
Haben jetzt 29 Ränge also vorgestellt und auch benannt aber jetzt wie mache ich das halt am server -
ich habe das jetzt so geändert das es funktioniert.
Arma 3 Server Altis Life
PhPmyadmin
Aber meine Garage funktioniert nicht
-
Spoiler anzeigen
SET FOREIGN_KEY_CHECKS=0;-- ----------------------------
-- Table structure for `cellphone`
-- ----------------------------
DROP TABLE IF EXISTS `cellphone`;
CREATE TABLE `cellphone` (
`pid` varchar(64) NOT NULL,
`playerName` varchar(32) NOT NULL,
`messages` text NOT NULL,
`insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;-- ----------------------------
-- Records of cellphone
-- ------------------------------ ----------------------------
-- Table structure for `containers`
-- ----------------------------
DROP TABLE IF EXISTS `containers`;
CREATE TABLE `containers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pid` varchar(32) NOT NULL,
`classname` varchar(32) NOT NULL,
`pos` varchar(64) DEFAULT NULL,
`inventory` varchar(500) NOT NULL,
`gear` text NOT NULL,
`dir` varchar(64) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
`owned` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`,`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of containers
-- ------------------------------ ----------------------------
-- Table structure for `dynmarket`
-- ----------------------------
DROP TABLE IF EXISTS `dynmarket`;
CREATE TABLE `dynmarket` (
`id` int(11) NOT NULL DEFAULT '1',
`prices` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of dynmarket
-- ------------------------------ ----------------------------
-- Table structure for `gangs`
-- ----------------------------
DROP TABLE IF EXISTS `gangs`;
CREATE TABLE `gangs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` varchar(32) DEFAULT NULL,
`name` varchar(32) DEFAULT NULL,
`members` text,
`maxmembers` int(2) DEFAULT '8',
`bank` int(100) DEFAULT '0',
`active` tinyint(4) DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of gangs
-- ------------------------------ ----------------------------
-- Table structure for `houses`
-- ----------------------------
DROP TABLE IF EXISTS `houses`;
CREATE TABLE `houses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pid` varchar(32) NOT NULL,
`pos` varchar(64) DEFAULT NULL,
`owned` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`,`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of houses
-- ------------------------------ ----------------------------
-- Table structure for `players`
-- ----------------------------
DROP TABLE IF EXISTS `players`;
CREATE TABLE `players` (
`uid` int(12) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`aliases` text NOT NULL,
`playerid` varchar(50) NOT NULL,
`cash` int(100) NOT NULL DEFAULT '0',
`bankacc` int(100) NOT NULL DEFAULT '0',
`coplevel` enum('0','1','2','3','4','5','6','7','8','9','10','11','12','13') NOT NULL DEFAULT '0',
`mediclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
`civ_licenses` text NOT NULL,
`cop_licenses` text NOT NULL,
`med_licenses` text NOT NULL,
`civ_gear` text NOT NULL,
`cop_gear` text NOT NULL,
`med_gear` text NOT NULL,
`civ_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"',
`cop_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"',
`med_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"',
`arrested` tinyint(1) NOT NULL DEFAULT '0',
`adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
`donatorlvl` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
`blacklist` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
UNIQUE KEY `playerid` (`playerid`),
KEY `name` (`name`),
KEY `blacklist` (`blacklist`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;-- ----------------------------
-- Table structure for `users`
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`user_id` int(5) NOT NULL AUTO_INCREMENT,
`user_name` varchar(25) NOT NULL,
`user_email` varchar(35) NOT NULL,
`user_pass` varchar(255) NOT NULL,
`user_steam` varchar(18) NOT NULL,
`user_tsid` varchar(30) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of users
-- ------------------------------ ----------------------------
-- Table structure for `vehicles`
-- ----------------------------
DROP TABLE IF EXISTS `vehicles`;
CREATE TABLE `vehicles` (
`id` int(12) NOT NULL AUTO_INCREMENT,
`side` varchar(15) NOT NULL,
`classname` varchar(32) NOT NULL,
`type` varchar(12) NOT NULL,
`pid` varchar(32) NOT NULL,
`alive` tinyint(1) NOT NULL DEFAULT '1',
`active` tinyint(1) NOT NULL DEFAULT '0',
`plate` int(20) NOT NULL,
`color` int(20) NOT NULL,
`inventory` varchar(500) NOT NULL,
`insure` int(1) NOT NULL DEFAULT '0',
`gear` varchar(500) NOT NULL,
`fuel` int(2) NOT NULL,
PRIMARY KEY (`id`),
KEY `side` (`side`),
KEY `pid` (`pid`),
KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=165 DEFAULT CHARSET=latin1;-- ----------------------------
-- Table structure for `wanted`
-- ----------------------------
DROP TABLE IF EXISTS `wanted`;
CREATE TABLE `wanted` (
`wantedID` varchar(50) NOT NULL,
`wantedName` varchar(52) NOT NULL,
`wantedCrimes` text NOT NULL,
`wantedBounty` int(100) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`wantedID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;-- ----------------------------
-- Records of wanted
-- ------------------------------ ----------------------------
-- Procedure structure for `deleteDeadVehicles`
-- ----------------------------
DROP PROCEDURE IF EXISTS `deleteDeadVehicles`;
DELIMITER ;;
CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteDeadVehicles`()
BEGIN
DELETE FROM `vehicles` WHERE `alive` = 0;
END
;;
DELIMITER ;-- ----------------------------
-- Procedure structure for `deleteOldContainers`
-- ----------------------------
DROP PROCEDURE IF EXISTS `deleteOldContainers`;
DELIMITER ;;
CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldContainers`()
BEGIN
DELETE FROM `containers` WHERE `owned` = 0;
END
;;
DELIMITER ;-- ----------------------------
-- Procedure structure for `deleteOldGangs`
-- ----------------------------
DROP PROCEDURE IF EXISTS `deleteOldGangs`;
DELIMITER ;;
CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldGangs`()
BEGIN
DELETE FROM `gangs` WHERE `active` = 0;
END
;;
DELIMITER ;-- ----------------------------
-- Procedure structure for `deleteOldHouses`
-- ----------------------------
DROP PROCEDURE IF EXISTS `deleteOldHouses`;
DELIMITER ;;
CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldHouses`()
BEGIN
DELETE FROM `houses` WHERE `owned` = 0;
END
;;
DELIMITER ;-- ----------------------------
-- Procedure structure for `resetLifeVehicles`
-- ----------------------------
DROP PROCEDURE IF EXISTS `resetLifeVehicles`;
DELIMITER ;;
CREATE DEFINER=`arma3`@`localhost` PROCEDURE `resetLifeVehicles`()
BEGIN
UPDATE `vehicles` SET `active`= 0;
END
;;
DELIMITER ;
Contact GitHub API Training Shop Blog About
© 2016 GitHub, Inc. Terms Privacy Security Status HelpIch kriege immer diese Fehler Meldung das ist keine Rechte habe.