The Wiki for Tale 7 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Difference between revisions of "User:Safa"

From ATITD7
Jump to navigationJump to search
Line 27: Line 27:
 
<li>zemples_stock.lua
 
<li>zemples_stock.lua
 
<li>zemples_take.lua
 
<li>zemples_take.lua
 +
<li>AlwaysOnTop.exe
 
</b>
 
</b>
  
Line 43: Line 44:
 
<li>[https://drive.google.com/open?id=0Bydp4KA9MLkKME1BTDlLdHZEa0U Download]
 
<li>[https://drive.google.com/open?id=0Bydp4KA9MLkKME1BTDlLdHZEa0U Download]
 
<li>[https://drive.google.com/open?id=0Bydp4KA9MLkKSV9iZjNRdlBtOFU Download]
 
<li>[https://drive.google.com/open?id=0Bydp4KA9MLkKSV9iZjNRdlBtOFU Download]
 +
<li>[https://drive.google.com/open?id=0Bydp4KA9MLkKdHlld0tTWUd6cTQ Download]
 
</ul>
 
</ul>
 
</td>
 
</td>
Line 59: Line 61:
 
<li>Preview Code
 
<li>Preview Code
 
<li>Preview Code
 
<li>Preview Code
 +
<li><font color="red">Preview Code</font>
 
</ul>
 
</ul>
 
</td>
 
</td>

Revision as of 19:15, 11 August 2016



L1.jpg
L2.jpg

Automato Scripts

  • blank.lua
  • chariot_stop.lua
  • grass.lua
  • gravel.lua
  • markChatsAsRead.lua
  • mod_assist.lua
  • oven_timer.lua
  • resin.lua
  • sculptor.lua
  • zemples_stock.lua
  • zemples_take.lua
  • AlwaysOnTop.exe
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code
    • Preview Code

    Line.jpg

    Art & Thought Tests

    PassedFormal Garden @1531,2274 River Plains
    PassedConstellation @1583,2887 River Plains
    PassedTomb of the Immortal @1581,2887 River Plains
    PassedRaeli Mosaic @1610,2847 River Plains
    PassedRaeli Gliderport @1586,2886 River Plains

    Line.jpg

    ATITD Discord (Voice Chat) Server

    Discord_Logo http://www.discord.me/atitd No download required.

    You can reach me from this link if im not available in-game.

    Line.jpg

    Links & Resources

    Public Chat Log Ceg's Egypt Map

    ZFree Guild Page Zfree Project Page Zemples Guild Page

    River Plains Gem School

    Gametime Estimator Map Marker Test Dual Logging

    ATITD Logo SVG Full size egypt map (9MB) In-game colors ATITD OST


    R1.jpg
    R2.jpg

    Notes

    ------------------------------------------------------------------------------------------------------------------------------------------------------
    Google Spreadsheet Embed Example (GoogleDocs Plugin)
    
    Use File > Publish to Web to make your document public. Copy the bit after "https://docs.google.com/spreadsheets/d/" and paste it as ID to below code.
    <googlespreadsheet height="600" width:"100%">ID_Goes_Here</googlespreadsheet>
    
    ------------------------------------------------------------------------------------------------------------------------------------------------------
    You may access the chat channel logs located at http://services.atitd.org/log.php directly using the following variables:
    game = any valid game, for example ATITD5, ATITD6, ATITD7 (see dropdown, defaults to ATITD7 now).
    channel = any valid ingame microphone channel, or the word "system" for the system log (defaults to System).
    type = html for html, rss for RSS, text for plaintext (defaults to html).
    day_value = # of days of logs to show, only works with html and plaintext (defaults to 7).
    limit = number of recent messages to display, only works with html and plaintext (defaults to none).
    sort = asc (ascending), or desc (descending) (defaults to desc).
    Examples
    
    Main Shard
    http://services.atitd.org/log.php?channel=Egypt%20Today&limit=5 Last 5 messages from E!
    http://services.atitd.org/log.php?channel=System&day_value=1 last 24 hours of system messages
    http://services.atitd.org/log.php?channel=System&type=text&limit=5 last 5 system messages in plaintext
    ------------------------------------------------------------------------------------------------------------------------------------------------------
    

    Automato Scripts

    blank.lua

  • --Blank Macro File
  • dofile("common.inc");
  • --Exit Loop?
  • is_done = false;
  • askText = singleLine([[Hit SHIFT to begin.]] );
  • function doit()
  •    askForWindow(askText);
  •    askForFocus();
  •    Run();
  • end
  • function Run()
  • --Loop
  •   while not is_done do
  •     checkBreak();
  •     lsPrint(0, 0, 2, 1.0, 1.0, 0xFFFFFFFF, "hello.");
  •     if lsKeyDown("q") then
  •       is_done = 1;
  •     end
  •     lsDoFrame();
  •     lsSleep(10);
  •   end
  • end