Skip to content

Instantly share code, notes, and snippets.

View Kirollos's full-sized avatar

Kirollos Kirollos

  • Cairo, Egypt
  • 22:56 (UTC +03:00)
View GitHub Profile
function onScriptLoad()
{
local arr = splitbyword("aHUEbcdHUEeHUEfHUEKEKHUEGJDGLDHUEHOAAAAHA", "HUE");
//local arr = splitbyword("a|b|c|d|e|f|g|hsss|dd|ss", "|");
for(local i = 0; i < arr.len(); i++)
{
print("["+i+"] => " + arr[i]);
}
}
=======================================================================================================
Time Table Logging of Current Tour
=======================================================================================================
-------------------------------------------------------------------------------------------------------
Arrival Arrival Arrival Depart. Depart. Depart.
Name of Busstop planned actual diff planned actual diff status
-------------------------------------------------------------------------------------------------------
Freudstr 12:45:00 12:45:16 00:00:16 ok
Falkenseer Ch Freud 12:46:21 12:45:48 -00:00:33 12:46:21 12:46:16 -00:00:05 ok
#include <a_samp>
#include <foreach>
new PauseVar[MAX_PLAYERS] = 0;
forward OnPlayerPause(playerid);
forward OnPlayerResume(playerid);
forward PauseCheck();
public OnFilterScriptInit()
new str[4] = "232";
new intt[3];
for(new i = 0; i < sizeof(str); i++)
{
if(str[i] == '\0') break;
intt[i] = str[i] - '0';
}