| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 166 online users. » 0 Member(s) | 162 Guest(s) Bing, Google, Applebot, Yandex
|
| Latest Threads |
Unban
Forum: Chat
Last Post: iAmir
Yesterday, 02:21 PM
» Replies: 5
» Views: 803
|
[Announcement] Spawn - An...
Forum: Tech
Last Post: iAmir
Yesterday, 12:22 AM
» Replies: 1
» Views: 251
|
Pedestrians
Forum: Plugins
Last Post: iAmir
Yesterday, 12:18 AM
» Replies: 1
» Views: 266
|
Silly little render a did...
Forum: Art
Last Post: iAmir
Yesterday, 12:07 AM
» Replies: 1
» Views: 1,266
|
Discord Server Unable to ...
Forum: Chat
Last Post: iAmir
Yesterday, 12:06 AM
» Replies: 1
» Views: 454
|
It has been a while
Forum: Chat
Last Post: iAmir
Yesterday, 12:04 AM
» Replies: 1
» Views: 461
|
GTA San Andreas - The mov...
Forum: Chat
Last Post: ricardofnl
2026-07-04, 11:26 PM
» Replies: 1
» Views: 554
|
Kalcor is still outta the...
Forum: Chat
Last Post: ricardofnl
2026-07-04, 11:14 PM
» Replies: 2
» Views: 286
|
[Tool] PawnPro v3.4.2 — D...
Forum: Programming
Last Post: NullSablex
2026-07-04, 09:38 PM
» Replies: 0
» Views: 64
|
Help needed: Where to fin...
Forum: Questions and Suggestions
Last Post: doctorsalamii
2026-07-04, 09:31 PM
» Replies: 0
» Views: 37
|
|
|
| Vehicle Bugger |
|
Posted by: Trox - 2019-12-26, 02:23 PM - Forum: Pawn Scripting
- No Replies
|
 |
Helu.
Does anyone have any idea how can i block this cheat?
Ik it uses unoccupied vehicles and kinda teleport them but how can i check it?
I tried to check player velocity , position , seat , vehicle pos, vehicle speed?.. nothing works.
|
|
|
|
| Pathfinding with ColAndreas and FCNPC |
|
Posted by: [SF]kAn3 - 2019-12-23, 04:41 PM - Forum: Pawn Scripting
- No Replies
|
 |
I'm trying both to make npcs move around randomly and follow a player, yet there are 2 main problems.
1 - While randomly moving, npcs sometimes fall a bit under the ground surface, and then they start going up and down the surface real fast, making severe eye damage if you look at them
2 - When following someone, they will climb any object that is on their way, regardless of its height. For example, if there's a tree between me and the npc, he won't avoid the tree so you will see it going from the ground to the top of the tree while walking. Same thing happens for any other object.
Randomly move around:
PHP Code: GoRandom(npcid){ if(!FCNPC_IsValid(npcid)){ printf("[DEBUG] Invalid NPC: %d", npcid); return; } if(FCNPC_IsMoving(npcid)){ return; } if(FCNPC_IsDead(npcid)){ return; } if(FCNPC_IsAttacking(npcid)){ return; } new Float: startX, Float: startY, Float: startZ, Float: nx, Float: ny, Float: nz, Float: rx, Float: ry, Float: rz, chance = random(2), bool: positivecoord; FCNPC_GetPosition(npcid, startX, startY, startZ); positivecoord = (chance == 0) ? true : false; startX = (positivecoord == true) ? startX + random(20) + 15 : startX - random(20) + 15; startY = (positivecoord == true) ? startY + random(20) + 15 : startY - random(20) + 15; FCNPC_GetPosition(npcid, nx, ny, nz); CA_FindZ_For2DCoord(startX, startY, startZ); CA_FindZ_For2DCoord(nx, ny, nz);
if(CA_RayCastLine(startX, startY, startZ, nx, ny, nz, rx, ry, rz) == 0){ FCNPC_GoTo(npcid, startX, startY, startZ, FCNPC_MOVE_TYPE_WALK, FCNPC_MOVE_SPEED_AUTO, true); FCNPC_ApplyAnimation(npcid, "PED", "WALK_DRUNK", 4.1, 1, 1, 1, 0, 0); }
return; }
Follow the player:
PHP Code: if(IsPlayerInRangeOfPoint(npcid,45.0,xa,ya,za) && CA_RayCastLine(xa, ya, za, nx, ny, nz, rx, ry, rz) == 0){ // if is near player and there's no object between them FCNPC_GoTo(npcid,xa,ya,za,MOVE_TYPE_RUN,0.4, true); return 1; }
Am I doing it wrong, there already is a pathfinding method in FCNPC or CA or anything similar? Also I found Dijkstra (https://pastebin.com/RwQZ1PWy) is it obsolete?
Any help will be appreciated.
|
|
|
|
| [MAP] Mall exterior |
|
Posted by: Stefhan - 2019-12-20, 04:14 PM - Forum: Videos and Screenshots
- No Replies
|
 |
I removed the original mall and replaced it with several stores.
You Tool, a home depot,
Davis Mall, the new mall,
IDEA, basically IKEA,
Sumo, an electronics store,
A parking garage,
Some random minor stores
Video shows both daylight and nighttime. Interiors haven't been mapped yet.
Please share your critique.
[Video: https://www.youtube.com/watch?v=WSrzm7byB1w]
|
|
|
|
| [MAP] SKYRIM TAVERN in SA-MP! |
|
Posted by: Twixxer - 2019-12-18, 02:15 PM - Forum: Videos and Screenshots
- Replies (4)
|
 |
So I recreated The Sleeping Giant tavern/inn from The Elder Scrolls: Skyrim, in SAMP. I had made a similar map years ago, but I felt like it needed a fresh re-do. This is the result. No mods/custom objects. Around 800 objects.
|
|
|
|
|