[FilterScript] [FS] Laptop System v2 by Comptons_Eazy_E (( Eric_ ))
#21

Looks interesting, will test tomorrow.
Reply
#22

Ha-ha nice. A MySQL Laptop system for SA-MP. This is epic nice work dude.
Reply
#23

Reply
#24

Quote:
Originally Posted by Noredine
You messed up something..
Reply
#25

Quote:
Originally Posted by Eric_
Quote:
Originally Posted by Noredine
You messed up something..
Yea because this works perfectly very useful for RP/Freeroam servers.
Reply
#26

Me don't messed up...Just ShowPlayerDialog...They are not recognized, can give me an include pawno that they recognize

Sorry for my bad english
Reply
#27

Hahahaha i like it !!! Thanks ! (Avast will help you xD)
Reply
#28

Quote:
Originally Posted by Noredine
Me don't messed up...Just ShowPlayerDialog...They are not recognized, can give me an include pawno that they recognize

Sorry for my bad english
you should use the newest includes (0.3), not from 0.2
Reply
#29

Quote:
Originally Posted by Noredine
Me don't messed up...Just ShowPlayerDialog...They are not recognized, can give me an include pawno that they recognize

Sorry for my bad english
Update your includes
Reply
#30

Looks pretty sweet!
Reply
#31

Good job Eric_
Reply
#32

I do all that was necessary for that

I always have: Plugins
Loading mysql failed.

I have need a guy for help me with TeamViewer

Thank you in advance
Reply
#33

Quote:
Originally Posted by Noredine
I do all that was necessary for that

I always have: Plugins
Loading mysql failed.

I have need a guy for help me with TeamViewer

Thank you in advance
What?
Reply
#34

why isnt an amw file there?
Reply
#35

Quote:
Originally Posted by manunited1878
why isnt an amw file there?
Just compile.
Reply
#36

can any compile it to me?? please
Reply
#37

What's so hard about compiling a file? Just press F5 in pawno.
Reply
#38

please what is wrong in my tables?

Код:
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `DB_TABLE2`
--

DROP TABLE IF EXISTS `DB_TABLE2`;
SET @saved_cs_client   = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `DB_TABLE2` (
 `Account` int(20) NOT NULL auto_increment,
 `Sender` int(20) NOT NULL,
 `Rec` int(20) NOT NULL,
 `Message` int(255) NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `DB_TABLE`
--

DROP TABLE IF EXISTS `DB_TABLE`;
SET @saved_cs_client   = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `DB_TABLE` (
 `Name` varchar(80) collate latin1_general_ci NOT NULL,
 `HasLaptop` int(11) NOT NULL default '0',
 `Virus` int(11) NOT NULL default '0',
 `AntiVirus` int(11) NOT NULL default '0',
 `OnlineStorage` int(11) NOT NULL default '0',
 PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
SET character_set_client = @saved_cs_client;

/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
Reply
#39

Quote:
Originally Posted by jasonnw666
please what is wrong in my tables?

Код:
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `DB_TABLE2`
--

DROP TABLE IF EXISTS `DB_TABLE2`;
SET @saved_cs_client   = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `DB_TABLE2` (
 `Account` int(20) NOT NULL auto_increment,
 `Sender` int(20) NOT NULL,
 `Rec` int(20) NOT NULL,
 `Message` int(255) NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `DB_TABLE`
--

DROP TABLE IF EXISTS `DB_TABLE`;
SET @saved_cs_client   = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `DB_TABLE` (
 `Name` varchar(80) collate latin1_general_ci NOT NULL,
 `HasLaptop` int(11) NOT NULL default '0',
 `Virus` int(11) NOT NULL default '0',
 `AntiVirus` int(11) NOT NULL default '0',
 `OnlineStorage` int(11) NOT NULL default '0',
 PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
SET character_set_client = @saved_cs_client;

/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
What's wrong with it? I dont see a problem
Reply
#40

i got these error when i launch the server
Код:
[20:12:38] MySQL Error (0): 'mysql_real_escape_string' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_num_rows' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_fetch_row' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_real_escape_string' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_num_rows' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] Incoming connection: 127.0.0.1:2671
[20:12:38] [npc:join] Donnie has joined the server (1:127.0.0.1)
[20:12:38] MySQL Error (0): 'mysql_real_escape_string' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_num_rows' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_fetch_row' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_real_escape_string' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_query' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_store_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_num_rows' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:38] MySQL Error (0): 'mysql_free_result' called when not connected to any database. Access denied for user 'ODBC'@'localhost' (using password: NO).
[20:12:41] --- Server Shutting Down.
[20:12:41]
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)