April 28, 2024, 05:37:06 am

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Armadyl

Pages: [1]
2
Off Topic / Re: Problem with VC:MP
« on: August 02, 2012, 11:19:32 pm »
Microsoft Error beep code? I'm afraid it is...

3
Scripting Support / Re: Can someone please help me?
« on: July 31, 2012, 04:11:29 pm »
Does anyone know what's da problem here?


Quote
function LoadPickups()
{
   local q = QuerySQL( db, "SELECT Pos FROM Properties WHERE rowid LIKE '%'" );
   
   while ( GetSQLColumnData( q, 0 ) )
   {
      local SplitPos = split( GetSQLColumnData( q, 0 ), " " );
      
      local x = SplitPos[ 0 ], y = SplitPos[ 1 ], z = SplitPos[ 2 ];
      
      CreatePickup( 407, Vector( x.tofloat(), y.tofloat(), z.tofloat() ) );
      
      q = GetSQLNextRow( q );
   }
}

(Sorry, the main scripter went on vacation. I was going to do the 'boring' and 'simple' part, but I cannot even start a decent server... I'd really appreciate any help. When I add an ; after GetSQLColumnData , I lagg like hell, there is no problem, but ppl cannot join this time. I have an old PC, may that be the cause?)

4
Scripting Support / Re: Can someone please help me?
« on: July 31, 2012, 03:33:31 pm »
Load the modules first before trying to connect the Database.

Something like this

Code: [Select]
function onScriptLoad()
{
      LoadModule("sq_lite");
      db <- ConnectSQL( "DataBase.db" );
}
Aw my god thanks a ton bro, you want a free blowjob turn?  O0

5
Scripting Support / Can someone please help me?
« on: July 31, 2012, 12:29:31 pm »
Well, I'm scripting a server with someone (FBS based) and everytime I try to run the server I get this error:



I tried it on a Windows XP Service Pack 2 , Windows Vista Service Pack 1 & a Windows 7 Ultimate 64-bit . Always same screen.

Line 31 is:
Quote
   print( "Cars System loaded" );
   //Connect the DataBase.
   db <- ConnectSQL( "DataBase.db" );
   print( "Connected SQL Database." );
   // Load Modules
   LoadModule( "sq_hashing" );
   LoadModule( "sq_ini" );
   LoadModule( "sq_lite" );
   dofile( "Main.nut" ); //Cars

He sent me this VCMP Server.exe and told me it's working, but it's infected with W32/Sality.gen ...............

Thanks in advance

6
Accepted Applications / Re: Application - .:Rodrigo:.
« on: July 31, 2012, 12:47:13 am »
Congratz!

7
Script Showroom / Re: Rusty_Bullet22's Script Collection
« on: July 29, 2012, 12:17:29 pm »
:thumbsdown:

8
Accepted Applications / Re: Application - .:Rodrigo:.
« on: July 28, 2012, 07:36:01 pm »
Good Luck, Rodrigo!  :thumbsup:

Pages: [1]