Hmm, I totally don't remember there being a spell book. I must not have ever picked it up when I was younger. I believe I used to just remember the colors of the spells each time.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
import function unitUPG(String Type, bool UPGable);
int characterLocation;
function repeatedly_execute_always()
{
if (!theCharacter.Moving) //only check if the NPC isn't moving
{
if (characterLocation==1)
{
theCharacter.Walk(100, 100, eNoBlock);
characterLocation==2;
}
else
if (characterLocation==2)
{
theCharacter.Walk(200, 100, eNoBlock);
characterLocation==3;
}
else
if (characterLocation==3)
{
theCharacter.Walk(150, 200, eNoBlock);
characterLocation==1;
}
}
}
Quote from: icey games on Tue 01/06/2010 17:31:08
I don't work with square I just featur some stuff from FF in pub master quest,ect...
QuoteApparently according to the girls, women have nothing to compare with each other. Apparently breasts aren't such a deal for them, they have no reproductive value...Bullshit I say.
Quote from: roll on Mon 31/05/2010 23:43:07I believe it's this game in the database:
Where is the download link?
function cursorAnimOnOff(CursorMode theMode, int iXcursor, int iAnimView, int iNoAnim )
{
if (mouse.GetModeGraphic(theMode) == iXcursor) //"x" cursored-out
{
if (cursorAnim == true)
{
mouse.ChangeModeView(theMode, iAnimView); //change to normal animated view
}
mouse.ChangeModeGraphic(theMode, iNoAnim); //normal cursor, no animation
}
}
#define guiAmount 3
GUI* guiList[guiAmount];
function game_start()
{
guiList[0] = gA;
guiList[1] = gB;
guiList[2] = gC;
}
function hideOtherGUIs(this GUI*)
{
if (!this.Visible)
{
int i;
while (i<guiAmount)
{
if (this!=guiList[i]) guiList[i].Visible=false;
i++;
}
}
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.224 seconds with 15 queries.