SA-MP Forums Archive
Bug MAP - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Bug MAP (/showthread.php?tid=605689)



Bug MAP - Kenxxx - 23.04.2016

Fixed


Re: Bug MAP - SaiyanZ - 23.04.2016

Select the Object you wanna delete, Then simply click delete using Map Construction then click Show code it will show you code like RemoveBuldingForPlayer, Copy that and paste it in your pawno, Gamemode script under OnPlayerConnect
Example is here:
PHP код:
public OnPlayerConnect(playerid)
{
    
RemoveBuildingForPlayer(playerid36641960.6953, -2236.429719.28130.25);
    
RemoveBuildingForPlayer(playerid36641388.0078, -2593.000019.28130.25);
    return 
1;




Re: Bug MAP - Darkwood17 - 23.04.2016

Quote:
Originally Posted by SaiyanZ
Посмотреть сообщение
Select the Object you wanna delete, Then simply click delete using Map Construction then click Show code it will show you code like RemoveBuldingForPlayer, Copy that and paste it in your pawno, Gamemode script under OnPlayerConnect
Example is here:
PHP код:
public OnPlayerConnect(playerid)
{
    
RemoveBuildingForPlayer(playerid36641960.6953, -2236.429719.28130.25);
    
RemoveBuildingForPlayer(playerid36641388.0078, -2593.000019.28130.25);
    return 
1;

The objects he don't want are NOT the original GTA:SA objects. They are created by code in SA-MP.

Anyways check again your gamemode for objects (search for CreateObject or CreateDynamicObject, etc..) and if you don't find these objects, try searching in filterscripts.


Re: Bug MAP - Kenxxx - 24.04.2016

I've search for many times, but I cant find where the problem is.