Re: How to create a plugin -
iPLEOMAX - 04.10.2011
Ok thanks again. I'll try it out.
Re: How to create a plugin -
iPLEOMAX - 05.10.2011
RyDeR`, May I ask you to write a simple tutorial on creating a plugin using the GDK (When you have some spare time)?
I tried creating one with it and it complied just fine. But I see no messages.. >.>
I'll be really grateful to you.
EDIT: Nvm, CyNiC has helped me with this. An awesome dude.
Re: How to create a plugin -
SkizzoTrick - 17.10.2011
Quote:
Originally Posted by RyDeR`
When does this happen? When you load Visual Studio 2010?
|
When i try to compile it ...
Re: How to create a plugin -
Lorenc_ - 23.10.2011
I'm dieing to know where can I find some file where it will show all the SA-MP functions without me bothering to copy other sources and getting 46 errors lol.
EDIT:
sampgdk, wow, doesn't even have anything saying How to install!
Do you mind when you have the spare time to simply upload a blank plugin? just including the source so we don't have to redo the steps a thousand times (one with the sampgdk if you can)
thanks ryder, you legend :P
Re: How to create a plugin -
iggy1 - 23.10.2011
Quote:
Originally Posted by Lorenc_
Do you mind when you have the spare time to simply upload a blank plugin? just including the source so we don't have to redo the steps a thousand times (one with the sampgdk if you can)
|
There is a "helloworld" example on Zeexs github,
https://github.com/Zeex/sampgdk/tree...les/helloworld
EDIT: Also a blank plugin might not be a good idea, as the files would all need renaming and that can also cause problems.
Re: How to create a plugin -
JordanMaddox - 26.10.2011
AWESOMMMEEE this was actually fun to do
Re: How to create a plugin -
Igorek - 08.11.2011
delete.
The problem is solved. Thank you.
Respuesta: How to create a plugin -
[Nikk] - 07.12.2011
Awesome!
Re: How to create a plugin -
RyDeR` - 13.01.2012
@Both previous posts: make sure you have every step. Just remove your current project and try again.
Re: How to create a plugin -
Max_Coldheart - 13.01.2012
Where should I place these .cpp and .h files? I'm really new to this and would like to know it step by step :P
Re: How to create a plugin -
Gh05t_ - 13.01.2012
Quote:
Originally Posted by CookieJar
Where should I place these .cpp and .h files? I'm really new to this and would like to know it step by step :P
|
This tutorial covers only partial information about plugins. Kyosaur's

tutorial though, goes in-depth of the SDK.
https://sampforum.blast.hk/showthread.php?tid=295798
Re: How to create a plugin -
Guitar - 16.03.2012
Great thank you I'll try to create something lol.
Re: How to create a plugin -
zgintasz - 14.04.2012
Nice tutorial, but I'm getting this error:
Code:
error C2065: 'YourNativeNameHere' : undeclared identifier
What I have to do?
EDIT:
fixed, i've put
Code:
static cell AMX_NATIVE_CALL YourNativeNameHere(AMX *amx, cell *params)
{
logprintf("I haz made my first plugin!! :)");
// Your codes go in here
return 1; // Change the return value if need
}
over the projectNatives...
Nice tutorial

. I think you should make a tutorial how to use sampGDK.
Re: How to create a plugin -
Genuine - 26.06.2012
Thanks a lot more this !
Re: How to create a plugin -
$$inSane - 29.06.2012
great tutorial
Re: How to create a plugin -
RyDeR` - 08.07.2012
You're not pushing all values correctly.
Re: How to create a plugin -
CROSS_Hunter - 23.08.2012
pawn Code:
1>c:\documents and settings\omnia\my documents\visual studio 2008\projects\samp_plugin\samp_plugin\samp_plugin.cpp(32) : error C2065: 'YourNativeNameHere' : undeclared identifier
Re: How to create a plugin -
MicroD - 24.08.2012
Quote:
Originally Posted by CROSS_Hunter
pawn Code:
1>c:\documents and settings\omnia\my documents\visual studio 2008\projects\samp_plugin\samp_plugin\samp_plugin.cpp(32) : error C2065: 'YourNativeNameHere' : undeclared identifier
|
You must put that function before this part:
Code:
AMX_NATIVE_INFO projectNatives[] =
{
{ "YourNativeNameHere" , YourNativeNameHere },
{ 0, 0 }
};
AW: How to create a plugin -
Kaliber - 18.09.2012
I can't download me SDK, because the Link is down, have somebody a online Link ?
*Sry for my bad english*
Re: How to create a plugin -
Plovix - 27.10.2012
Great and awesome tutorial,i learn something,tnx for tut,+ rep!