Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 266 online users. » 1 Member(s) | 263 Guest(s) Bing, Google, PawnFox
|
|
|
Circular Progress |
Posted by: eubluen - 2023-12-02, 12:29 AM - Forum: Libraries
- Replies (2)
|
 |
Circular Progress
Download:
[url=https://github.com/igdiogo/Circular-Progress-Samp][/url]
freesampscripts - Create source code
blueN - Recreate code with new natives and update funtions
Preview:
|
|
|
My samp crashes and I can't fix it!! |
Posted by: JEYLOS - 2023-12-01, 12:41 PM - Forum: Support
- No Replies
|
 |
Hello, my Samp is crashing, what the crash info tells me :
https://drive.google.com/file/d/1sMLmLU9...sp=sharing
All the ways that I have tested have not worked :
Reinstall Windows.
Reinstall Gta Sa.
Install Version 1.0.
Update Graphic Driver.
Test Other Servers.
Change compotibillity.
Install Cleo.
Install Anticrasher. and.....
Not Fixed My Problem. I even installed all versions of microsoft visual c++ redistributable and replaced the msvcrt.dll file. Except for Crash, my game lags even on the lowest graphics. please help me.
system specification :
H610M-A
I3 12100
Ram 16GB
SSD 250GB
HDD 1TB
PSU 600W
|
|
|
I am having an issue with my code |
Posted by: [Rs]VeNoM - 2023-12-01, 07:43 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
This is my code, this code is of creating an organization vehicle but it says Unknown Command
Code: CMD:setorgveh(playerid,params[])
{
new orgid, vid;
if(!IsPlayerAdmin(playerid)) return 0;
if(sscanf(params,"ui",orgid, vid)) return SendClientMessage(playerid, 0xFF4500AA, "USAGE:/setorgveh <orgid> <vid>");
new Float:X,Float:Y,Float:Z,Float:A;
if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER) return SendClientMessage(playerid,0xFF4500AA,"You aren't in any vehicle.");
GetVehiclePos(GetPlayerVehicleID(playerid),X,Y,Z);
GetVehicleZAngle(GetPlayerVehicleID(playerid),A);
if(vid == 1)
{
OrgData[orgid][car1] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,60);
}
if(vid == 2)
{
OrgData[orgid][car2] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
}
if(vid == 3)
{
OrgData[orgid][car3] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
}
if(vid == 4)
{
OrgData[orgid][car4] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
}
if(vid == 5)
{
OrgData[orgid][car5] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
}
new sl[256];
format(sl,256,"** You have set vehicle id %d to organization vehicle, %s (Carid:%d).",GetVehicleModel(GetPlayerVehicleID(playerid)),vid);
SendClientMessage(playerid,0x808000AA,sl);
return 1;
}
Full code : https://pastebin.com/KXLubSGP[url=https://pastebin.com/KXLubSGP][/url]
|
|
|
FCNPC for open.mp |
Posted by: BotLevel.Bobu - 2023-11-30, 07:20 PM - Forum: Pawn Scripting
- Replies (4)
|
 |
Code: [Error] Skipping legacy plugin 'FCNPC'; It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp
Where do I find the FCNPC plugin for open.mp version ?
Or is there another plugin that works good with NPCS ?
|
|
|
[DUVIDA] Desenvolvimento do Projeto |
Posted by: gabriel.hfscp - 2023-11-30, 01:08 PM - Forum: Portuguese/Portugu?s
- No Replies
|
 |
Olá,
Em meio a todo o caos que podemos ver que está ocorrendo com o SA:MP, imagino que muitos assim como eu estão em dúvida sobre o OPEN. PARLAMENTAR.
Como está o andamento do projeto? Pude ver que disponibilizaram uma versão do OPEN. MP SERVER, e que a versão CLIENT está em desenvolvimento ainda...
Já seria possível acessar servidores que utilizam o OPEN. PARLAMENTAR?
O que difere ele do SAMP?
Vamos nos comunicando por aqui, obrigado pela atenção de todos.
Não estou utilizando acentos nas letras, pelo visto essa plataforma de fórum não utiliza a codificação que nos atenderia
|
|
|
Find the number into a text |
Posted by: BotLevel.Bobu - 2023-11-29, 09:42 PM - Forum: Pawn Scripting
- Replies (2)
|
 |
Hi ! I need your help. I want to find the number in a random text.
For example:
Code: #include <open.mp>
main()
{
new randomText.1[50] = " Hi, my name is John and I am 29 years old.";
new randomText.2[50] = " Hey there, I choose the number 17.");
new randomText.3[50] = " I want to be the number 1.");
new Age;
new LottoNr;
new Number;
FindTheNumber(randomText.1, Age);
printf(" Number found: %d", Age);
FindTheNumber(randomText.2, LottoNr);
printf(" Number found: %d", LottoNr);
FindTheNumber(randomText.3, Number);
printf(" Number found: %d", Number);
}
|
|
|
|