Sampserver auto turn off - 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: Sampserver auto turn off (
/showthread.php?tid=511913)
Sampserver auto turn off -
csampvn - 08.05.2014
i turn on sampserver and connect server Then i used some command or go to a postition => Sampserver turn off
Re: Sampserver auto turn off -
Smileys - 08.05.2014
post your server-log here please.
Re: Sampserver auto turn off -
csampvn - 08.05.2014
Код:
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3z, ©2005-2014 SA-MP Team
[20:35:03]
[20:35:03] Server Plugins
[20:35:03] --------------
[20:35:03] Loading plugin: sscanf
[20:35:03]
[20:35:03] ===============================
[20:35:03] sscanf plugin loaded.
[20:35:03] Version: 2.8.1
[20:35:03] © 2012 Alex "******" Cole
[20:35:03] ===============================
[20:35:03] Loaded.
[20:35:03] Loading plugin: streamer
[20:35:03] Loaded.
[20:35:03] Loading plugin: nativechecker
[20:35:03] Loaded.
[20:35:03] Loaded 3 plugins.
[20:35:03]
[20:35:03] Filterscripts
[20:35:03] ---------------
[20:35:03] Loading filterscript 'Zadmin4.2.amx'...
[20:35:03] - Loading language 'Zadmin_English'...
[20:35:04]
[20:35:04] - Admin commands activtion commnds Configuration loaded.
[20:35:04] - Admin Commands Levels loaded.
[20:35:04] - System Options Configurations caricate.
[20:35:04] - ANTI BAD NAMES: 0 forbidden parts of name.
[20:35:04] - ANTI SWEAR: 6 forbidden words loaded.
[20:35:04] - RANGE BAN: 0 range-banned players loaded.
[20:35:04] Zadmin: Updating Config...
[20:35:04] Zadmin: Updated Config.
[20:35:04] *** 'Zadmin v4.2' loading is complete.
[20:35:04]
*************************************
[20:35:04] * [FS]Zadmin *
[20:35:04] * v4.2 *
[20:35:04] * Loaded. *
[20:35:04] * By [ZFM]Zuc *
[20:35:04] *************************************
[20:35:04] Loading filterscript 'Coin.amx'...
[20:35:04] Loading filterscript 'Maps.amx'...
[20:35:04] Loading filterscript 'objectedtr.amx'...
[20:35:04] |------OBJECTS EDITOR--------|
[20:35:04] | |
[20:35:04] | |
[20:35:04] | |
[20:35:04] | |
[20:35:04] |----------------------------|
[20:35:04] Loading filterscript 'rRace.amx'...
[20:35:04] Loading filterscript 'TimeandDate.amx'...
[20:35:04]
--------------------------------------
[20:35:04] Updated Version! WORLDCLOCK+DATE By Shadow
[20:35:04] --------------------------------------
[20:35:04] Loading filterscript 'animations.amx'...
[20:35:04] [FS] All Animations 0.4 by Psycho loaded.
[20:35:04] Loaded 7 filterscripts.
[20:35:04]
*********************************************************
[20:35:04] * *
[20:35:04] * A.L.P.H.A *
[20:35:04] * ----------------- *
[20:35:04] * Kent™ FilterScript System *
[20:35:04] * Copyright©Kent™ *
[20:35:04] *********************************************************
[20:35:04] -> Update
[20:35:04] Number of vehicle models: 27
[20:35:16] Zadmin: Saving Player Stats
[20:35:28] Zadmin: Saving Player Stats
[20:35:35] Incoming connection: 127.0.0.1:3818
[20:35:35] [join] JokerK has joined the server (0:127.0.0.1)
[20:35:35] * JokerK (id:0) joined in server *
[20:35:39] Zadmin: Saving Player Stats
[20:35:39] Zadmin: Updating Config...
[20:35:39] Zadmin: Updated Config.
[20:35:45] *-_-* \"JokerK\"(id: 0) typed \"/drift1\"
[20:35:51] Zadmin: Saving Player Stats
Re: Sampserver auto turn off -
Beckett - 08.05.2014
Post the command that makes you crash.
Re: Sampserver auto turn off -
csampvn - 09.05.2014
Код:
dcmd_givemoney(playerid,params[]){
if(ServerInfo[GiveMoney]==0){
CommandDisabled(playerid);}
if(Account[playerid][pAdminlevel]<CmdsOptions[GiveMoney]){
format(string, sizeof(string), LanguageText[0], CmdsOptions[GiveMoney]);
SendClientMessage(playerid, COLOR_LIGHTRED, string);}else
if(Account[playerid][pAdminlevel]>=CmdsOptions[GiveMoney]) if(ServerInfo[GiveMoney]==1){
new tmp[MAX_SERVER_STRING],tmp2[MAX_SERVER_STRING],ammount, Index; tmp = strtok(params,Index); tmp2 = strtok(params,Index);
if(!strlen(tmp)){
SendClientMessage(playerid, COLOR_WHITE, LanguageText[282]);
return 1;}
if(!IsNumeric(tmp)){
SendClientMessage(playerid, COLOR_LIGHTRED, LanguageText[40]);
return 1;}
if(!strlen(tmp2)){
SendClientMessage(playerid, COLOR_WHITE, LanguageText[282]);
return 1;}
player = strval(tmp);
ammount = strval(tmp2);
if(!IsPlayerConnected(player)){
SendClientMessage(playerid, COLOR_LIGHTRED, LanguageText[41]);
return 1;}
if(ammount<0){
SendClientMessage(playerid, COLOR_LIGHTRED, LanguageText[283]);
return 1;}
GetPlayerName(player, incriminato, sizeof(incriminato)); GetPlayerName(playerid, adminname, sizeof(adminname));
format(string, sizeof(string), LanguageText[284], adminname, incriminato, ammount);
SendClientMessageToAll(COLOR_LIGHTRED, string);
#if defined SpecialAntiMoneyHack
GiveZMoney(player,ammount);
#else
GivePlayerMoney(player,ammount);
#endif
}
return 1;}
Re: Sampserver auto turn off -
csampvn - 09.05.2014
Bump
Re: Sampserver auto turn off -
csampvn - 10.05.2014
Bump x2 plz help me