Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 44d06c5

Browse files
authored
Merge pull request #77 from PandaSRC/website-update
Website Update
2 parents 67b5390 + 76a7215 commit 44d06c5

File tree

10 files changed

+66
-604
lines changed

10 files changed

+66
-604
lines changed

Club Penguin Speedrunning Client.ahk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,15 +264,14 @@ RegRead, firewall_status, HKLM, SYSTEM\ControlSet001\Services\SharedAccess\Param
264264
If (!InStr(firewall_status, "Enabled"))
265265
RegWrite, REG_SZ, HKLM, SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List, [C:\xampp\php\php.exe], [C:\xampp\php\php.exe]:*:Enabled:[PHP]
266266

267-
FileCopy, C:\xampp\htdocs\index.html.copy, C:\xampp\htdocs\index.html, 1
268267
FileDelete, C:\xampp\htdocs\index.php
269268
FileCopy, C:\xampp\htdocs\php.ini, C:\xampp\php, 1
270269

271270

272271

273272
Menu, Tray, Icon, %A_WorkingDir%\favicon.ico,,1
274273
Run, run.vbs
275-
Run, http://localhost/play/load.swf
274+
Run, http://localhost/
276275

277276
OnExit, ExitSub
278277
return

Kitsune/ClubPenguin/Plugins/AntiAd/AntiAd.php

Lines changed: 0 additions & 129 deletions
This file was deleted.

Kitsune/ClubPenguin/Plugins/Commands/Commands.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ final class Commands extends Plugin {
1111
//public $dependencies = array("PatchedItems" => "loadPatchedItems");
1212
public $dependencies = array(
1313
"PatchedItems" => "loadPatchedItems",
14-
"AntiAd" => "loadAntiAd"
14+
//"AntiAd" => "loadAntiAd"
1515
);
1616

1717
public $worldHandlers = array(
@@ -76,7 +76,7 @@ final class Commands extends Plugin {
7676
private $mutedPenguins = array();
7777

7878
private $patchedItems;
79-
private $antiAd;
79+
//private $antiAd;
8080

8181
public $partyServicePacket = '%xt%partyservice%2%{"partySettings":{"partyIglooItems":[0],"numOfDaysInParty":14,"unlockDayIndex":14},"questSettingList":[{"roomIds":[800,809,300,100],"questItemIndex":0,"unlockDay":0,"memberItemIds":[1967,24245],"nonmemberItemId":5509},{"roomIds":[800,809,300,801,100],"questItemIndex":1,"unlockDay":0,"memberItemIds":[1965,24243],"nonmemberItemId":5508},{"roomIds":[800,809,801],"questItemIndex":2,"unlockDay":1,"memberItemIds":[1968,24246],"nonmemberItemId":5510},{"roomIds":[800,801,300],"questItemIndex":3,"unlockDay":1,"memberItemIds":[1969,24247],"nonmemberItemId":5516},{"roomIds":[891],"questItemIndex":4,"unlockDay":2,"memberItemIds":[1966,24244],"nonmemberItemId":9291}],"swordsList":[{"rewardId":0,"points":20,"itemId":2327,"type":"FURNITURE"},{"rewardId":1,"points":50,"itemId":5512,"type":"PAPER_ITEM"},{"rewardId":2,"points":100,"itemId":5515,"type":"PAPER_ITEM"},{"rewardId":3,"points":200,"itemId":5513,"type":"PAPER_ITEM"},{"rewardId":4,"points":350,"itemId":83,"type":"IGLOO"},{"rewardId":5,"points":600,"itemId":0,"type":"PAPER_ITEM"}],"kananLightsaber":{"unlockDay":2,"itemId":5511},"inquisitorPrizeItems":{"memberItemId":[24248,5514],"nonMemberItemId":1970}}%';
8282

@@ -92,9 +92,9 @@ public function loadPatchedItems() {
9292
$this->patchedItems = $this->server->loadedPlugins["PatchedItems"];
9393
}
9494

95-
public function loadAntiAd() {
96-
$this->antiAd = $this->server->loadedPlugins["AntiAd"];
97-
}
95+
//public function loadAntiAd() {
96+
// $this->antiAd = $this->server->loadedPlugins["AntiAd"];
97+
//}
9898

9999
public function handleRefreshClient($penguin) {
100100
$penguin->room->refreshRoom($penguin);

0 commit comments

Comments
 (0)