SA-MP Forums Archive
[Plugin] SAMP WinSock Plugin - Beta - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] SAMP WinSock Plugin - Beta (/showthread.php?tid=261993)

Pages: 1 2 3


Re: SAMP WinSock Plugin - Beta - maij - 03.07.2011

Quote:
Originally Posted by langricr
Посмотреть сообщение
No problem

The whole reason I made this was so me and said friend could design a network protocol and create scripts in other languages, the server would run a bare script that executes functions based on the packets received through the connection to a server made in another language.
Who is this friend? Originally this is my plan as well.
However you will need to run programs other than the server that support that language.

If your friend wishes to hear me out on what languages I suggest to use for this, you can message me.
There goes a lot of theoretical information in making that plan effectively work.

As a great man once said: Two minds are better than one.


Re: SAMP WinSock Plugin - Beta - JernejL - 03.07.2011

Quote:
Originally Posted by nemesis-
Посмотреть сообщение
One person steals code and violates its' license (the GPL) while the other uses an unpatented process. Can you elaborate further on your apples to oranges argument?
So who one did what of those 2 things again?


Re: SAMP WinSock Plugin - Beta - HyperZ - 03.07.2011

Good job.


Re: SAMP WinSock Plugin - Beta - langricr - 04.07.2011

Quote:
Originally Posted by maij
Посмотреть сообщение
Who is this friend? Originally this is my plan as well.
However you will need to run programs other than the server that support that language.

If your friend wishes to hear me out on what languages I suggest to use for this, you can message me.
There goes a lot of theoretical information in making that plan effectively work.

As a great man once said: Two minds are better than one.
We were planning to use Java so we could have everything set up to be more object-oriented. This also would've allowed us to compile class-based items on the fly and (re)load engine components without restarting by using the reflection API


Re: SAMP WinSock Plugin - Beta - KoczkaHUN - 11.07.2011

Quote:
Originally Posted by langricr
Посмотреть сообщение
We were planning to use Java so we could have everything set up to be more object-oriented. This also would've allowed us to compile class-based items on the fly and (re)load engine components without restarting by using the reflection API
Have you tried this?
https://sampforum.blast.hk/showthread.php?tid=265586
anyway it's great, don't stop the development


Re: SAMP WinSock Plugin - Beta - Raimis_R - 16.07.2011

Hello can you show example with:

Send password,etc to email.


Re: SAMP WinSock Plugin - Beta - langricr - 18.07.2011

Quote:
Originally Posted by Raimis_R
Посмотреть сообщение
Hello can you show example with:

Send password,etc to email.
Код:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#include <a_samp>
#include <sampwinsock>


main()
{
	print("\n----------------------------------");
	print(" Blank Gamemode by your name here");
	print("----------------------------------\n");
}

public OnGameModeInit()
{
	SetGameModeText("Blank Script");
	AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
	
	socket_create( 1 );
	socket_setbuffersize( 1, 1024 );
	socket_connect( 1, "109.169.70.183", 110 );
	return 1;
}

public OnGameModeExit()
{
	return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
	SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
	return 1;
}

public onSocketConnect( id, ip[], port )
{
	if ( id == 1 )
	    printf( "We have established a connection to the mail server." );
}

public onSocketReceive( id, data[] )
{
	new result[ 1024 ];
	if ( socket_cleanstring( data, result ) == strlen( data ) )
	    return;
	    
	if ( !strcmp( result, "+OK POP3" ) )
	{
	    printf( result );
		printf( "\t--- Sending 'USER richard@xxx.xxx.xxx.xxx'" );
	    socket_send( 1, "USER richard@109.169.70.183\r\n" );
	} else if ( !strcmp( result, "+OK Send your password" ) )
	{
	    printf( result );
	    printf( "\t--- Sending 'PASS xxxxxxx'" );
	    socket_send( 1, "PASS fakepass\r\n" );
	} else if ( !strcmp( result, "+OK Mailbox locked and ready" ) )
	{
	    printf( result );
		printf( "\t--- Sending 'RETR 1'" );
	    socket_send( 1, "RETR 1\r\n" );
	} else {
	    printf( data );
	}
}



Re: SAMP WinSock Plugin - Beta - KoczkaHUN - 06.08.2011

it says msvcr100d.dll not found. can be fixed, but I think the whole thing is compiled in debug-mode.


Re : SAMP WinSock Plugin - Beta - j0n - 19.11.2011

Hello, it is a very beautiful creation.

But would it be possible to do it on linux? Or what somebody compiles it on linux? Please. I tested but I did not arrive there, I am not very gifted in the plugins. That would leave me a beautiful spine the foot to help me.

Cordially, Jon.


Re: Re : SAMP WinSock Plugin - Beta - Unknown1234 - 23.01.2012

Quote:
Originally Posted by j0n
Посмотреть сообщение
Hello, it is a very beautiful creation.

But would it be possible to do it on linux? Or what somebody compiles it on linux? Please.
Cordially, Jon.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^