SA-MP Forums Archive
Need Help with this server - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Need Help with this server (/showthread.php?tid=260295)



Need Help with this server - [$A$]W33D$P33D - 08.06.2011

this server keeps crashing as soon as i connect to it does anyone know what could be causing it...

please give ideas


Re: Need Help with this server - Ironboy500[TW] - 08.06.2011

Could be your script. Check your server_log.txt and OnPlayerConnect.


Re: Need Help with this server - [$A$]W33D$P33D - 08.06.2011

its all fine the server starts up but as soon as a person connects the console crashes


Re: Need Help with this server - Ironboy500[TW] - 08.06.2011

Can you show us onplayerconnect?


Re: Need Help with this server - [$A$]W33D$P33D - 08.06.2011

public OnPlayerConnect(playerid)
{
SendClientMessage(playerid, COLOR_ORANGE, "Welcome to PartyIsland %s");
new string[128], playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
format(string, sizeof(string), "%s has joined PartyIsland!", playername);


Re: Need Help with this server - [$A$]W33D$P33D - 08.06.2011

any ideas,,,, somebody


AW: Need Help with this server - Julian12345 - 08.06.2011

pawn Код:
public OnPlayerConnect(playerid)
{
    new string[128], string2[128], playername[MAX_PLAYER_NAME];
    GetPlayerName(playerid, playername, sizeof(playername));
    format(string, sizeof(string), "Welcome to PartyIsland %s",playername);
    SendClientMessage(playerid, COLOR_ORANGE, string);
    format(string2, sizeof(string2), "%s has joined PartyIsland!",playername);
    SendClientMessageToAll(COLOR_ORANGE, string2);
    return 1;
}



Re: Need Help with this server - [$A$]W33D$P33D - 08.06.2011

Hehehehehehehehehehehe lol ffs i am such an idiot to forget that ty hehehe...