Any Thing Gameing
March 28, 2024, 08:45:05 am
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Add The link to The site in your Sig on all forum's!
 
  Home Help Search Gallery Staff List Login Register  

MoparScape begginers guide (finished)

Pages: [1]
  Print  
Author Topic: MoparScape begginers guide (finished)  (Read 3142 times)
Dizz
Global Moderator
Newbie
*****
Posts: 5



View Profile
« on: June 01, 2007, 09:53:18 pm »

If you downloaded PhoneScape,

You should extract and then open it. Look for a file named "client.java", double click it (make sure you are opening it with notepad), and then push CTRL+F and search for:

Code:
@cya@phone

Hopefully your results are:

Code:
sendQuest("@cya@Phone", 199);

Change "@cya@Phone" to whatever you want.

Now, click "compile.bat" then delete everything inside it and replace it with the code in my next post

« Last Edit: June 02, 2007, 09:39:40 pm by The dizz » Report Spam   Logged

My MoparScape server is coming soon around september

It's going to have major commands, major mods, and major items

Share on Facebook Share on Twitter

Dizz
Global Moderator
Newbie
*****
Posts: 5



View Profile
« Reply #1 on: June 01, 2007, 10:27:45 pm »

[PART 2]

If you downloaded Fr33Sc4p3,

Open the server source folder and push CTRL+F and search for:

Code:
sendFrame126("                        @red@~@whi@F@red@r@gre@3@cya@3@whi@s@red@c@gre@4@cya@p@whi@3@red@~", 6570);


Replace the "@red@~@whi@F@red@r@gre@3@cya@3@whi@s@red@c@gre@4@cya@p@whi@3@red@~" part to whatever you want but don't make it too long or you'll mess the whole thing up.

Then click "compile.bat" and delete everything inside it and replace it with:

Code:
@echo off
if exist "C:\Program Files (x86)\" set programfiles=C:\Program Files (x86)
set pr=%programfiles%\Java\
:co1
set b=0
set t=7
goto co2
:co2
color %b%%t%
:menu
cls
title The Perfect Compiler version 1.8
echo Please choose an option below to do that function.
echo Keep posted on the Moparscape Tutorials section for
echo any updates that I post.
echo.
echo c - Compile your server.
echo r - To Run your server.
echo e - To exit out of the program.
echo jar - It will create your server into an executable Jar archive.
echo color - Change the Text and Backround colors of this compiler.
echo reset - Resets your Compiler Logs.
echo.
echo.
set /p c=Option:
if %c%==c goto c
if %c%==C goto c
if %c%==r goto r
if %c%==R goto r
if %c%==jar goto jar
if %c%==Jar goto jar
if %c%==JAR goto jar
if %c%==color goto color
if %c%==Color goto color
if %c%==COLOR goto color
if %c%==reset goto reset
if %c%==Reset goto reset
if %c%==RESET goto reset
if %c%==e goto e
if %c%==E goto e
if %c%==* goto er
goto er
:jar
title Jar Creator
cls
echo What will be the name of the Jar file?
echo.
set /p name=Name:
if exist *.class (del *.class)
set pro=%pr%jdk1.5.0\
set pro2=%pr%jdk1.6.0\
set jav=bin\javac.exe
set go=jar2
goto cj
:jar2
%java% -cp . *java
echo Manifest-Version: 1.0 >> manifest
echo Created-By: 1.5.0_04 (Sun Microsystems Inc.) >> manifest
echo Main-Class: server >> manifest
set pro=%pr%jdk1.5.0\
set pro2=%pr%jdk1.6.0\
set jav=bin\jar.exe
set go=jar3
goto cj
:jar3
if not exist *.class (goto jre)
%java% -cvfm %name%.jar manifest *.class
del runserver.bat
del manifest
del *.class
goto jl
:jar4
set pro=%pr%jre1.5.0\
set pro2=%pr%jre1.6.0\
set jav=bin\java.exe
set go=jar5
goto cj
:jar5
echo @echo off  >> runserver.bat
echo title %name% >> runserver.bat
echo %java% -cp .;%name%.jar server >> runserver.bat
echo pause >> runserver.bat
cls
echo %name% Jar file successfully made. The runserver.bat will
echo now load the Jar file. If you have any errors while runnning
echo the Jar file, please post about it in Mod Taharok's 'Perfect
echo Compiler' topic on MoparScape.
pause
goto menu
set
:color
cls
echo Would you like to change the backround color, change
echo the text color, or reset it to default?
echo.
echo back - Change the backround color.
echo text - Change the text color.
echo def - Change all colors back to default.
echo.
echo.
set /p color=Option:
if %color%==back goto back
if %color%==BACK goto back
if %color%==text goto text
if %color%==TEXT goto text
if %color%==def goto co1
if %color%==DEF goto co1
if %color%==* goto er
goto er
:back
cls
echo Please select a color to change the backround to:
echo.
echo black
echo white
echo red
echo yellow
echo green
echo blue
echo purple
echo.
echo.
set /p back=Color:
if %back%== black (set b=0)
if %back%== white (set b=7)
if %back%== red (set b=4)
if %back%== yellow (set b=6)
if %back%== green (set b=2)
if %back%== blue (set b=1)
if %back%== purple (set b=5)
goto co2
:text
cls
echo Please select a color to change the text to:
echo.
echo black
echo white
echo red
echo yellow
echo green
echo blue
echo purple
echo.
echo.
set /p back=Color:
if %back%== black (set t=0)
if %back%== white (set t=7)
if %back%== red (set t=4)
if %back%== yellow (set t=6)
if %back%== green (set t=2)
if %back%== blue (set t=1)
if %back%== purple (set t=5)
goto co2
:c
cls
title Compiler
set pro=%pr%jdk1.5.0\
set pro2=%pr%jdk1.6.0\
set jav=bin\javac.exe
set go=c2
goto cj
:c2
if exist src (goto cl) else (goto c3)
:c3
if exist *.java (goto cl2) else (goto ce)
:c4
%java% -cp . *.java
echo Files Compiled Successfully!
pause
cls
goto menu
:c5
%java% -cp . .\src\*.java
echo Files Compiled Successfully!
pause
move .\src\*.class .\classes\
cls
goto menu
:ce
cls
echo You must have Java files for this Compiler to Compile.
pause
cls
goto menu
:r
cls
title Runserver
set pro=%pr%jre1.5.0\
set pro2=%pr%jre1.6.0\
set jav=bin\java.exe
set go=r2
goto cj
:r2
set rjava=%java% -Xmx1024m -cp .;./jython.jar;./MySql/mysql-connector-java-3.0.17-ga-bin.jar server
cls
goto r3
:r3
if exist .\classes\server.class (goto sl2) else (goto r4)
:r4
if exist .\server.class (goto sl) else (goto se)
:r5
%rjava%
pause
cls
goto menu
:r6
set rjava=
set rjava=%java% -cp .;./classes; Server
%rjava%
pause
cls
goto menu
:se
cls
title Error
echo You do not have a Server.class. Make sure that you have used the
echo compiler with your server BEFORE you try runing it.
pause
cls
goto menu
:er
cls
title Error
echo Invalid command. Please make sure the commands you type
echo in are correct.
pause
cls
goto menu
:e
cls
exit
:cj
if exist "%pro2%%jav%" (goto sj) else (goto cj2)
:cj2
if exist "%pro%_10%jav%" (goto sj2) else (goto cj3)
:cj3
if exist "%pro%_09%jav%" (goto sj3) else (goto cj4)
:cj4
if exist "%pro%_08%jav%" (goto sj4) else (goto cj5)
:cj5
if exist "%pro%_07%jav%" (goto sj5) else (goto cj6)
:cj6
if exist "%pro%_06%jav%" (goto sj6) else (goto cj7)
:cj7
if exist "%pro%_05%jav%" (goto sj7) else (goto cj8)
:cj8
if exist "%pro%_04%jav%" (goto sj8) else (goto cj9)
:cj9
if exist "%pro%_03%jav%" (goto sj9) else (goto cj10)
:cj10
if exist "%pro%_02%jav%" (goto sj10) else (goto cj11)
:cj11
if exist "%pro%_01%jav%" (goto sj11) else (goto cj12)
:cj12
if exist "%pro%%jav%" (goto sj12) else (goto je)
:sj
set java="%pro2%%jav%"
goto %go%
:sj2
set java="%pro%_10%jav%"
goto %go%
:sj3
set java="%pro%_09%jav%"
goto %go%
:sj4
set java="%pro%_08%jav%"
goto %go%
:sj5
set java="%pro%_07%jav%"
goto %go%
:sj6
set java="%pro%_06%jav%"
goto %go%
:sj7
set java="%pro%_05%jav%"
goto %go%
:sj8
set java="%pro%_04%jav%"
goto %go%
:sj9
set java="%pro%_03%jav%"
goto %go%
:sj10
set java="%pro%_02%jav%"
goto %go%
:sj11
set java="%pro%_01%jav%"
goto %go%
:sj12
set java="%pro%%jav%"
goto %go%
:je
cls
title Error
echo You do not have JDK 5.0 or JDK 6.0. Go to Mod Taharok's tutorial
echo on the Moparscape Tuturoials section for step-by-step instructions
echo link to download the newest JDK Update.
pause
cls
goto menu
:sl
cls
echo Ran Server at %time% and on %date%. >> "Compile Logs.txt"
echo Server was run using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto r5
:sl2
cls
echo Ran Server at %time% and on %date%. >> "Compile Logs.txt"
echo Server was run using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto r6
:cl
cls
echo Compiled Java files at %time% and on %date%. >> "Compile Logs.txt"
echo Java files were compiled using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto c5
:cl2
cls
echo Compiled Java files at %time% and on %date%. >> "Compile Logs.txt"
echo Java files were compiled using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto c4
:jl
cls
echo %name% Jar file created at %time% and on %date%. >> "Compile Logs.txt"
echo Jar file was created using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto jar4
:reset
cls
echo Resetting the Compiler's Logs...
pause
del "Compile Logs.txt"
goto menu


Now, here is another guide to random server stuff (useful)

Making an npc talk (NOTE: To get to all this npc stuff open "NpcHandler.java")

Use this code:

Code:
if (npcs[i].npcType == NPCID) {
if (misc.random2(50) == 1) {
npcs[i].updateRequired = true;
npcs[i].textUpdateRequired = true;
npcs[i].textUpdate = "YOUR TEXT HERE";
}
}

Where it says "NPCID" replace it with what the npc's ID is.
Where it says "YOUR TEXT HERE" put text in there for what you want the npc to say.

Making an npc saying a certain person is online

Use this code:

Code:
if (npcs[i].npcType == NPC ID) {
if (misc.random2(25) <= 3) {
npcs[i].updateRequired = true;
npcs[i].textUpdateRequired = true;
if (PlayerHandler.isPlayerOn("PERSONSNAME")){
npcs[i].textUpdate = "Owner PERSONSNAME is Online";
}
else{
npcs[i].textUpdate = "Owner PERSONNAME is Offline";
}
}
}

Now this is real important. Where it says at the top "NPC ID" you have to replace it with the npc's ID.

Where it says "if (PlayerHandler.isPlayerOn("PERSONSNAME")){" you have to replace "PERSONSNAME" with what person you want the npc to say that is online. Then at the bottom of that line it'll say "npcs.textUpdate = "Owner PERSONSNAME is Online";
Where it says "Owner personsname is Online" you replace that with what you want the npc to say when you log on.

Now, let's review.

Where it said "(PlayerHandler.isPlayerOn("PERSONSNAME"))-{" you should of put someones name, supposedly yours. That way the npc knows when you log on. Now where you put that "npcs.textUpdate = "Owner personsname is Online" you should've replaced it with "Owner (what your name is) is Online". That way every time you log on the npc will keep saying "Owner (your name) is Online".

Changing xp rates and stuff like that  (Let's use the varrock dummy room doors for example)

How to change xp rates. Is rather simple because 99% of servers you attack doors and dummys double click your runserver.bat and open moparscape have your ip as 0.0.0.0 with the port stated. You should see this line when you open it:

Code:
Starting (SERVERNAME) on 0.0.0.0:(PORT)

Now log in and attack the door it should show a black message in your chat. Open client.java use Ctrl +f and type the message and press "find next". You should see a case something like this:

Code:
case 823:
if (actionTimer == 0) {
sendMessage("You attack the door");
setAnimation(844);
addSkillXP((150*playerLevel[0]), 0);
addSkillXP((300*playerLevel[3]), 3);
addSkillXP((150*playerLevel[18]), 18);
actionTimer = 12;
}
break;

Where it says ("You attack the door") you should replace it with whatever text you want to appear when you hit the door.

Now this part is important. If you want to set exp for when someone hits the door look on that code above for:
Code:
addSkillXP((150*playerLevel[0]), 0);
addSkillXP((300*playerLevel[3]), 3);
addSkillXP((150*playerLevel[18]), 18);


Its adding skillxp to 3 lvls there. Slayer, hp and attack
To change how much xp edit those 3 numbers it current gives you your attack lvl * 300xp per hit

and it says set animation which will do that animation number. While doing it the 1 stated there is a crawling animation. You can change the animation number, but I am going to ask my friend who has the animation numbers. (His server is so freaky)



Ask me for any more codes and I will do my best to help!
Report Spam   Logged

My MoparScape server is coming soon around september

It's going to have major commands, major mods, and major items
Dizz
Global Moderator
Newbie
*****
Posts: 5



View Profile
« Reply #2 on: June 01, 2007, 10:30:39 pm »

[PART 3]

I found the animation list! My friend didn't have time to find his so I am going to copy and paste this information he sent me. (NOTE: He said he found this off of the MoparScape forums)

Code:
<agility>
744 - fast monkey bar cross emote
745 - part of the monkey bar crossing emote (right arm back)
746 - Pipe climb starting emote
747 - entrance part of pipe emote, (non-animated)
748 - Pipe climb exiting emote
749 - full pipe climb emote, only in one sq though
770 - Falling emote, as if off of a rope or log (agility)
839 - Climb over something
844 - Crawling
1110 - MATRIX
1114 - hit by darts
1115 - jumping over spikes or rocks
1117 - part of hand holds
1118 - ???
1119 - falling from hand holds
1120 - hand holds
1125 - hit by rocks + stumbles back
2239 - BOOM!!! shoots in the air - rogues den
2240 - going through bent bars - rogues den
2241 - poison gas - rogues den
2242 - launch in air, hit floor - rogues den
2243 - disable wall trap - rogues den
2244 - disable floor trap - rogues den
2245 - side wall trap? - rogues den
2246 - picking lock - roges den
2247 - listening to lock - rogues den
2750 - jump over fence emote
2753 - huge jump to side
2761 - jumping jacks - Drill seargent random
2756 - Push-Ups - Drill seargent random
2763 - sit-ups - Drill seargent random
2764 - jog in place - Drill seargent random
3063 - climb up a wall, then climb down
3067 - jumping over something, landing nicely
3068 - jumping over something, not landing very nicely...
3094 - looses balance falls forward
<Weapons\Combat>
402 - Dragon Dagger stab emote
403 - Block with shield defensive emote
404 - Block no shield defensive emote
405 - Dragon spear special
406 - 2h crush style emote
407 - 2h slash style emote
408 - Scythe 'REAP' attack style
410 - Defensive block when 2h weapon equiped
412 - Stab
422 - PUNCH
423 - KICK
424 - Fore-arm block
440 - Halberd "Slash" attack style
451 - Slash attack style (longsword, shortsword, ect.)
1060 - drag mace spec
1658 - Whip attack
1659 - Whip block
1660 - Whip walk
1661 - Whip run
1662 - Granite Maul stand
1663 - Granite Maul walk
1664 - Granite Maul run
1665 - Granite maul attack
1666 - Granite Maul block
1667 - Granite Maul special
1833 - drag baxe attack
2316 - standing holding toad shooter (fixed defice)
2318 - walking holding toad shooter
2323 - kick attack while wielding fixed device
2876 - DRAG AXE SPEC!!
2890 - DARKLIGHT SPEC!
2910 - spinning something and then throwing it
2927 - twirling weapon then hitting something
3157 - Dragon 2h special
<Barrows>
2060 - veracs walk
2061 - veracs standing
2062 - veracs attack!!
2063 - veracs block
2064 - dharoks walk
2065 - dharoks standing
2066 - dharoks crush
2067 - dharoks slash
2068 - torags attack
2074 - karils holding bow
2075 - karils shooting
2076 - karils walking
2077 - karils running
2078 - ahrims attack non-magic
2079 - ahrims block
2080 - guthans 'poke'?
2081 - guthans slash
2082 - guthans crush
<Magic>
708 - IBAN STAFF ATTACK EMOTE
712 - Low Alch
713 - High Alch
714 - Teleport emote
716 - Curse, Weaken, or Confuse
722 - Superheat
724 - Crumble Undead
729 - Curse, Weaken, or Confuse
811 - CHARGE
1816 - teleother - person being teled
1818 - teleother - cast on player
1819 - teleblock - cast
1820 - teleblock - cast
<Range>
0426 - Range (Bow)
0427 - Range (Cross-Bow)
<Holiday Items>
1457 - yo-yo
1458 - spin - yo-yo
1459 - walk yo-yo emote
1460 - crazy yo-yo
1835 - chicken dance
1836 - SKIPPING!!!
2836 - SCARED EMOTE!
2840 - ALAS emote
2844 - SHOW HEAD EMOTE 'Muahahahah'
3003 - marionette jump
3004 - marionette walk
3005 - marionette bow
3006 - mationette dance
3007 - shaking the imps emote
<Standard \ Mime>
855 - Yes
856 - No
857 - Thinking
858 - Bow
859 - Angry
860 - Cry
861 - Laugh
862 - Cheer
863 - Wave
864 - Beckon
865 - Clap
866 - Dance
2105 - panic emote
2106 - slow jig emote
2107 - spin emote
2108 - headbang emote
2109 - joy jump emote
2110 - rasp' berry emote
2111 - yawn emote
2112 - salute emote
2113 - shrug emote
1128 - GLASS WALL - MIME
1129 - LEAN - MIME
1130 - CLIMB ROPE - MIME
1131 - GLASS BOX - MIME
<Funny>
439 - lol SPIN ATTACK
505 - Arms dislocate and revolve around you... well would ya look at that...
528 - WHIRLPOOL!!! *cough* *choke* *gurggle*
725 - Looks like you're holding onto something that's floating over top of you, you grab it, and then let it go and stumble forward
734 - Wall Monster attack without spiney helmet on
750 - Looks like you're pushed by someone, 2 squares backward, and you stumble
755 - Skate boarding rofl, facing right
760 - Turn Right and face plant rofl
812 - CHARGE (as a ghost?)
837 - ROFL Drop dead
841 - Walking invisible
1375 - blinking
1500 - FLoats up
1501 - 'God' - continuation of 1500
1654 - dies in chair
1655 - motionless, dies in chair
1656 - leans back in chair
1739 - walking like holding somethign on back
1745 - walking stomp
1765-1769 - Straight up funny
1770 - HILARIOUS ( makes it look like you have a big thingy )
1746 - crazy lol, funny!
1811 - twitch - push stand
1851 - super man
1861 - glare to right
1914 - uurghh... raawr!!!!
1938 - head throbbing
1950 - falling in pyramid - Desert treasure
1972 - evil laugh emote
2256 - arms crossed
2261 - FLYING CARPET
2262 - flying carpet - take off
2264 - flying carpet - landing
2339 - sitting moving arms
2340 - falls backwards while sitting down
2383 - twitching
2390 - backstepping, something in face?
2555 - fairy kick
2588 - jumping in the air
2592 - stand sideways and knod head
2769 - walking drunk
2770 - drunk
2780 - throws item in hand in the air
2720 - scrapes the air with a weapon?
2797 - holds sword weird and angry emote..
2820 - dying emote + fades away..
2895 - flying away
2939 - sitting, as if on a throne
2968 - something
2995 - face plant
3001 - boot to the nuts
3040 - standing drunk
3039 - walking drunk
<Miscellaneous>
618 - Harthingy fishing (slight paus)
619 - Lobster pot fishing
622 - Fishing Rod fishing
625 - Mining emote (one of them)
645 - Praying at Alter emote
733 - Lighting Logs Emote
776 - Pull rope emote from waterfall
791 - Runecrafting emote
794 - Balloon Stomp
804 - Disapearing when jumping into puddle at mage arena
827 - Burying Bones emote
828 - LADDER EMOTE
831 - Digging emote
875 - Woodcutting emote
881 - Pickpocket emote
883 - Cooking (range)
884 - Blowing Glass
885 - Cutting gems
894 - Spinning wheel
897 - Cooking (fire)
898 - Smithing (anvil)
899 - Smelting (furnace)
921 - toy horsey emote
1327 - drinking beer!
1329 - KEG!
1330 - ???
1331 - Kneeling
1332 - Kneeling
1333 - STROKE PET ROCK
1350 - reading
1351 - sitting looking down
1352 - sitting using think emote
1353 - sitting and smoking
1461 - bending down 1
1462-1470 - bending down cape waving
1502 - swim?
1540 - punch in the air, floating
1542 - ""
1648 - cranking wheel ectophuntus
1649 - putting bones into machine
1651 - ectophuntus pray emote
1652 - ""
1670 - prayer book preach
1810 - wall monster caught by head
1877 - snake charmer
1895 - sneaks a peek at something
1902 - Spinning plate
1906 - dropping
1911 - turning head to the right
1913 - breathing hard
1914 - breaking out of something
1991-1997 - some weird ones
2046-2048 - in the air doing somethin2g
2273 - raking - farming
2304 - dead emote
2306 - jumping on something alot then jjumping off
2338 - on knees looking foward
2389 - ti bwoi wanna or w\e.. thing
2400 - rants then takes a knee
2412 - dr jekkel emote!
3129 - holding on to something like you're flying
3141 - turning pages in a book
3103 - sits up brushes self off
3114 - rises from the grave!
3170 - ELECTRICUTED!
<Ancients!>
1978 - Blitz
1979 - Barrage   
Report Spam   Logged

My MoparScape server is coming soon around september

It's going to have major commands, major mods, and major items
Owner Yocky
Administrator
Forum CM
*****
Posts: 1000



View Profile
« Reply #3 on: June 01, 2007, 11:22:49 pm »

Nice ill sticky it
« Last Edit: June 02, 2007, 09:07:36 am by Yocky » Report Spam   Logged
The dizz
Global Moderator
Newbie
*****
Posts: 8



View Profile
« Reply #4 on: June 02, 2007, 09:34:32 pm »

Yeah i'm making a MoparScape world soon it's gonna be big but only coming out around august or september. I've recently just started so yeah, it's gonna take about 2 months to finish.

Here are the commands I finished them a week ago
Main commands
::yell (everyone knows what "::yell" does)
::quest (let's you do an awesome quest)
::questinfo (info about the quest)
::pk (teles you to wild)

Regular member commands
::pray to guthix (gives all guthix items)
::pray to sara (gives all sara items)
::pray to zammy (gives all zammy items)
::rules (shows a rule list)
::ninja (full rogue armour)

Mod commands[/b]
::kick (player name)
::ban (player name)
::xteletome (player name)
::xteleto (player name)
::modhouse (teles you to a house for mods with FREE high level stuff)

Admin commands (only making me and Yocky admin)
::ipban (player name)
::unstoppable (gives you armor and a weapon that only me and Yocky can get. It gives a HUGE bonus in everything)
::pickup (item ID)
Report Spam   Logged
Sober Dog
Administrator
Forum CM
*****
Posts: 1001



View Profile
« Reply #5 on: June 05, 2007, 08:31:39 pm »

dizz, could I be admin to?  Tongue
Report Spam   Logged

The dizz
Global Moderator
Newbie
*****
Posts: 8



View Profile
« Reply #6 on: June 06, 2007, 06:31:12 pm »

No i'm going to stop making my server and delete everything since the last incidents.

But I am still gonna play MoparScape for a very long time.
Report Spam   Logged
Rice768
Newbie
*
Posts: 1


View Profile
« Reply #7 on: May 25, 2009, 11:05:02 pm »

 I stop playing this game because my exam is too close right now .,Maybe I resume my playing after the exam.,

_________________
Ukf7003axx
Report Spam   Logged


Pages: [1]
  Print  
 
Jump to:  

Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum

Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy