Posts: 315
Threads: 95
Joined: Dec 2014
Reputation:
0
My script doesn't have warnings or erors.But when i start server,when i connect i can't login i can't type password
i cant nothing,and i must via task manager go out.
Last thing what i do is about time stamp.
I think i set time stamp go in future i don't know but i cant nothing on my server,what to do ?
Posts: 1,830
Threads: 49
Joined: Nov 2014
Reputation:
0
It might help removing filterscripts, if you have any.
Otherwise, show us the script this is happening with.
Posts: 1,830
Threads: 49
Joined: Nov 2014
Reputation:
0
The code that isn't working.
Posts: 315
Threads: 95
Joined: Dec 2014
Reputation:
0
i don't know in which place in script was a problem.
I don't remember what i last making in my script,because im bored..
Last thing what i acctualy do is typed command /aktivnost
and notthing happen then i delete that command and i cannot join..
here is the command
new jTime[MAX_PLAYERS]; //
CMD:aktivnost(playerid,params[])
{
new timestamp = gettime();
if(timestamp > jTime[playerid])
{
jTime[playerid] = gettime()+60*2;
printf(" Typed /aktivnost. gettime stored in jTime ");
}
else
{
new hoursleft = (jTime[playerid]-timestamp)/120;
printf("Current time: %i | 60 sec added: %i | Hours left for you to type this command again %i.",timestamp,jTime[playerid],hoursleft);
}
}