| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,726
» Latest member: ArmonsaN
» Forum threads: 2,517
» Forum posts: 12,594
Full Statistics
|
| Online Users |
There are currently 867 online users. » 1 Member(s) | 864 Guest(s) Bing, Yandex
|
| Latest Threads |
Random Message
Forum: Filterscripts
Last Post: Engkq
Today, 12:38 AM
» Replies: 0
» Views: 30
|
rfhrtjtu
Forum: Releases
Last Post: orttuj82
Yesterday, 05:40 AM
» Replies: 0
» Views: 27
|
shreyyhrey
Forum: Pawn Scripting
Last Post: orttuj82
Yesterday, 05:38 AM
» Replies: 0
» Views: 27
|
gerehre
Forum: Questions and Suggestions
Last Post: orttuj82
Yesterday, 05:37 AM
» Replies: 0
» Views: 24
|
Virtual Reality Roleplay ...
Forum: Advertisements
Last Post: Emirto
2026-07-25, 10:59 PM
» Replies: 0
» Views: 30
|
[LIVE] [FRESH START] Ulti...
Forum: Advertisements
Last Post: Neville
2026-07-25, 09:10 AM
» Replies: 1
» Views: 227
|
[ULP] Gamemode Base para ...
Forum: Offtopic
Last Post: xcleone
2026-07-24, 02:22 AM
» Replies: 0
» Views: 253
|
RSC - (CW/TG | Sandbox)
Forum: Gamemodes
Last Post: 1NS
2026-07-23, 05:28 PM
» Replies: 0
» Views: 69
|
🎮 Free SA-MP Server Hosti...
Forum: Chat
Last Post: Centnodes
2026-07-23, 03:55 PM
» Replies: 16
» Views: 6,621
|
Waklert 150 Armodafinil f...
Forum: Chat
Last Post: Alintawilliams00
2026-07-23, 10:25 AM
» Replies: 0
» Views: 48
|
|
|
| [SOLVED] compilation results in Pawno with Sublime so different ? |
|
Posted by: PutuSuhartawan - 2021-05-10, 11:16 PM - Forum: Pawn Scripting
- Replies (8)
|
 |
SOLUTION:
Code: Solved with, Stop, use the free Sublime, switch to Visual Studio Code for a compiler that will match both pawno and sampctl.
Problem:
I found strange symptoms when using the oldest version of the compiler and was asked to edit once with the sublime the results were stuck. In fact, the include from YSI will create a lot of missing files when compiled via sublime. But strangely, if you open it with pawno and compile it with the same obsolete pawncc, it only works in pawno. What makes YSI unsuitable for compiling via Sublime and compiling with the compiler?
|
|
|
|
| Map Dynamic Object Invisible Problem |
|
Posted by: LinesinRows - 2021-05-10, 06:46 PM - Forum: Support
- Replies (1)
|
 |
Hello,
?When I created dynamic object for map (In filter-script), some objects doesn't seem for player. What's the problem in this case?
? Thanks in advance.
Some code in map;
PHP Code: tmpobjid = CreateDynamicObject(19450, 164.765304, 1937.607055, 530.600891, 0.000000, 0.000000, 90.000000, -1, -1, -1, 300.00, 300.00); SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-70-percent", 0x00000000);
Problem img;
https://ibb.co/y04czJT
|
|
|
|
| Free Car Id |
|
Posted by: Kripteks - 2021-05-10, 10:37 AM - Forum: Support
- No Replies
|
 |
I tried the free tool id for gta sa and was successful. But when I tried it for sa-mp it doesn't work when I want to download a vehicle with a different ID. How can I solve it.
|
|
|
|
| [SOLVED] How can the android client enter the server version 0.3.DL ? |
|
Posted by: PutuSuhartawan - 2021-05-08, 07:21 PM - Forum: Pawn Scripting
- Replies (3)
|
 |
SOLUTION :
Code: All crack client users from Android must have been banned, in order to realize capitalism that has the best and fastest GPU graphics.
The question arises when an Android user whose client is lagging behind wants to join a very updated server like the 0.3.DL version. In my opinion this really doesn't make sense and will be overwhelmed by the low version of the client. Do you think this can be overcome and you know how?
How can the android client enter the server version 0.3.DL?
|
|
|
|
| Weapon-config |
|
Posted by: israel_Oliveira - 2021-05-07, 01:19 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
When I shoot a player nothing happens, he doesn?t take damage, what can it be? I already removed the publics Take and Give.
I put a printf in the public and it really is not being called when one player shoots the other.
Can anyone tell me why?
|
|
|
|
| Hata Anti-Cheat (H-AC) |
|
Posted by: Hata - 2021-05-07, 09:06 AM - Forum: Libraries
- No Replies
|
 |
List of Fixed Cheats;
Code: Silent Aimbot
Vehicle Repair Hack
Screen Flickering
Car Troller?
Surfing Invisible
Airbreak
Seat ID Crasher
Speed Hack (On Foot/Driver)
Troll Animation
Animation Invisible
Fly Hack?(On Foot)
Rage Shot
Trailer Crasher
Weapon Hack //To be developed.
Include:?H-AC.inc
Cheat Detection Public (To be added to gamemode);
Code: public OnPlayerCheatDetected(playerid, code)
{
? ? new cheatname[30], string[128];
? ? switch (code)
? ? {
? ? ? ? case 0: cheatname = "Silent Aimbot";
? ? ? ? case 1: cheatname = "Vehicle Repair Hack";
? ? ? ? case 2: cheatname = "Screen Flickering";
? ? ? ? case 3: cheatname = "Car Troller";
? ? ? ? case 4: cheatname = "Surfing Invisible";
? ? ? ? case 5: cheatname = "Airbreak";
? ? ? ? case 6: cheatname = "Seat Crasher";
? ? ? ? case 7: cheatname = "Speed Hack";
? ? ? ? case 8: cheatname = "Troll Animation";
? ? ? ? case 9: cheatname = "Animation Invisible";
? ? ? ? case 10: cheatname = "Fly Hack";
? ? ? ? case 11: cheatname = "Rage Shot";
? ? ? ? case 12: cheatname = "Trailer Crasher";
? ? ? ? case 13: cheatname = "Weapon Hack";
? ? }
? ? format(string, sizeof(string), "~w~%s detected by Hata Anti-Cheat", cheatname);
? ? GameTextForAll(string, 1000, 3);
? ? Kick(playerid);
? ? return 1;
}
|
|
|
|
| [SOLVED] What is the function, for (increment )? and where did it come from? |
|
Posted by: PutuSuhartawan - 2021-05-07, 02:13 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
SOLUTION??by?AbyssMorgan :
Code: Pawn have only for, while and do while loops.
foreach is function maked by developers in foreach.inc standalone y_foreach aka y_iterate or FoxForeach.inc
for example:
Code:
for(new i = 0; i < 10; i)
for(new i = 0; i < 10; i = 2)
for(new i = 0, j = strlen(stringvar); i < j; i)
What is the function, for (increment )? and where did it come from? is that function?from include?
at first I thought the function, "for" was made by foreach include. I was wrong, is this the default function of the pawn language? Can you explain why the language in "for" is different in general? and is it really different for the "for" and "foreach" functions?
|
|
|
|
|