Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0e2d3152e9 |
@@ -1,3 +1,9 @@
|
||||
Version 0.0.3 - 2025-09-15
|
||||
|
||||
* Update shebang to /bin/perl in irpg.pl
|
||||
* Add BASH file for crontab check
|
||||
* Minor changes
|
||||
|
||||
Version 0.0.2 - 2025-09-15
|
||||
|
||||
* Add Release project for building version releases
|
||||
|
||||
@@ -13,9 +13,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||
ISSUES.md = ISSUES.md
|
||||
LICENSE = LICENSE
|
||||
README.md = README.md
|
||||
TODO.md = TODO.md
|
||||
screenshot2.png = screenshot2.png
|
||||
screenshot1.png = screenshot1.png
|
||||
screenshot2.png = screenshot2.png
|
||||
TODO.md = TODO.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "irpg-bot", "irpg-bot", "{3784E8C8-32DE-4740-8F55-324EF1EC4E86}"
|
||||
@@ -25,6 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "irpg-bot", "irpg-bot", "{37
|
||||
irpg-bot\events.txt = irpg-bot\events.txt
|
||||
irpg-bot\INSTALL.txt = irpg-bot\INSTALL.txt
|
||||
irpg-bot\irpg.pl = irpg-bot\irpg.pl
|
||||
irpg-bot\irpgcheck.sh = irpg-bot\irpgcheck.sh
|
||||
irpg-bot\irpgdbtool = irpg-bot\irpgdbtool
|
||||
irpg-bot\modifiers.txt = irpg-bot\modifiers.txt
|
||||
irpg-bot\questinfo.txt = irpg-bot\questinfo.txt
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/usr/local/bin/perl
|
||||
#!/bin/perl
|
||||
# irpg.pl
|
||||
#
|
||||
# The bot modified, released and maintained by TommySalami
|
||||
@@ -33,7 +33,7 @@ my %opts;
|
||||
|
||||
readconfig();
|
||||
|
||||
my $version = "0.0.2";
|
||||
my $version = "0.0.3";
|
||||
|
||||
# command line overrides .irpg.conf
|
||||
GetOptions(\%opts,
|
||||
|
||||
10
irpg-bot/irpgcheck.sh
Normal file
10
irpg-bot/irpgcheck.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
if ps -ef | grep -v grep | grep /home/user/private/idlerpg/irpg.pl
|
||||
then
|
||||
exit 0
|
||||
else
|
||||
cd /home/user/private/idlerpg
|
||||
nohup /home/user/private/idlerpg/irpg.pl </dev/null >/dev/null 2>&1 &
|
||||
exit 0
|
||||
fi
|
||||
@@ -20,7 +20,7 @@
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<PropertyGroup>
|
||||
<ReleaseName>IdleRPG</ReleaseName>
|
||||
<ReleaseVersion>0.0.2</ReleaseVersion>
|
||||
<ReleaseVersion>0.0.3</ReleaseVersion>
|
||||
<ReleaseBotSourceName>IdleRPG-Bot</ReleaseBotSourceName>
|
||||
<ReleaseWebSourceName>IdleRPG-Web</ReleaseWebSourceName>
|
||||
<ReleaseSolutionSourceName>IdleRPG-Source</ReleaseSolutionSourceName>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB |
@@ -1,10 +1,7 @@
|
||||
contact.php 420 Jul 4, 2016
|
||||
db.php 420 Jul 4, 2016
|
||||
forum.php 420 Jul 4, 2016
|
||||
index.php 420 Jul 4, 2016
|
||||
playerview.php 420 Jul 4, 2016
|
||||
players.php 420 Jul 4, 2016
|
||||
quest.php 420 Jul 4, 2016
|
||||
worldmap.php 420 Jul 4, 2016
|
||||
g7.css 420 Jul 4, 2016
|
||||
idlerpg.png 420 Jul 4, 2016
|
||||
|
||||
Reference in New Issue
Block a user