The Lowrider Boss Posted March 29, 2015 Share Posted March 29, 2015 How Can I Make ASI Scripts, I spent days searching for it can anyone help me please? If yes, Leave a download Link to the ASI Builder. Link to comment Share on other sites More sharing options...
Karap Posted March 29, 2015 Share Posted March 29, 2015 (edited) ASI are codes in C ++, dll's are renamed as ASI,to build use any program to write C ++ languages Edited March 29, 2015 by Karap iFarbod 1 Link to comment Share on other sites More sharing options...
iFarbod Posted March 31, 2015 Share Posted March 31, 2015 Get Visual Studio 2013 (Google "Visual Studio 2013 Express"), there isn't a "ASI Builder/Creator" as you say. You can start creating DLLs in C/C++, C#, VB, F#. But C++ is the recommended way. Here's a kind of Hello World, written in C++. BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved){ if (ul_reason_for_call == DLL_PROCESS_ATTACH) MessageBoxA(0, "Hey!", "From my first ASI Plugin!", MB_OK); return TRUE;} You'll also need Plugin SDK to do things such as vehicle spawning, ped creating, giving weapons, etc. thehambone 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now