Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/06/2015 in all areas

  1. Jeez, I apologize for not drinking a second coffee for the second eye! $string = "The incredible new Dungeon Crawler taking the world by storm! Over 10 million downloads worldwide, with all new exciting content now available! Grow your character and restore the cosmic balance in an exciting free-to-play online adventure! AppleTell \u2013 named \u201cBest iOS Game of E3 2014\u201d\n\nTouchArcade \u2013 \u201cTaichi Panda has all the necessary components that make up a great hack 'n slash action game.\u201d\n\n148Apps \u2013 \u201cThe game looks like it has some pretty nice graphics and fast play style.\u201d\n\n==Features==\n\nA Stunning Fantasy Adventure\n\nEnter a world of goblins, bandits, and pandas as you adventure through graphically stunning maps in full 3D environments. Bash your way to the center of the mystery with a fast and fluid animation style built on full-body motion capture.\n\nHack \u2018n Slash Action\n\nFight through hordes of enemies with a fast-paced combat system. Use a mixture of speed, strength and skill, combining aerial attacks and combo moves to devastate the enemy. Explore twisting labyrinths, avoid precarious traps, and defeat powerful bosses!\n\nUpgrade Everything\n\nLevel up your character to unlock powerful new abilities. Upgrade and refine your gear to bolster your power, and unleash elemental magic through ancient runes. Develop your Pets, special battle companions with their own unique progression and skills.\n\nPlay in Real-time with Friends\n\nPlay in real-time multiplayer with friends and strangers. Become the ultimate Taichi champion with PvP arenas and battlefields. Team up with fellow adventurers in group dungeons to face off against formidable Bosses. Form Guilds with friends and compatriots, and expand your territory in Guild vs Guild war mode!\n\n==Connect==\n\nVisit our official site to learn more about Taichi Panda: http:\/\/panda.snail.com\/en \nJoin the Taichi Panda community and learn more on Facebook and our official Forum \nFacebook Page: https:\/\/www.facebook.com\/TaichiPandaEN \nCommunity Forum: http:\/\/pandabbs.snail.com\/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" $string = StringReplace($string, '\n', @CRLF) $string = StringReplace($string, '\/', '/') $string = Execute('"' & StringRegExpReplace($string, '\\u([[:xdigit:]]{4})', '" & ChrW(0x$1) & "') & '"')
    1 point
  2. Abscissa, Looking at that code you appear not to have read the Forum rules since your arrival. Please do read them - particularly the bit about not discussing game automation - before you post again. Thread locked. argumentum, In future, please look a little more carefully at the code before responding. M23
    1 point
  3. #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Local $Form1 = GUICreate("Form1", 327, 95, 192, 124) Local $hInput_username = GUICtrlCreateInput(magicRead("hInput_username"), 16, 16, 121, 21) Local $hLabel_username = GUICtrlCreateLabel("hello welcome back " & magicRead("hInput_username"), 16, 56, 221, 21) ;(the label have the text : hello welcome back Maik) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE magicWrite("hInput_username") GUIDelete() ExitLoop EndSwitch WEnd Func magicWrite($sGuiName) IniWrite(StringTrimRight(@ScriptFullPath, 3) & "ini", "saved", $sGuiName, GUICtrlRead(Eval($sGuiName))) EndFunc ;==>magicWrite Func magicRead($sGuiName) Return IniRead(StringTrimRight(@ScriptFullPath, 3) & "ini", "saved", $sGuiName, "no one ?") EndFunc ;==>magicRead
    1 point
  4. Data stored in the local memory of the AutoIt script will be gone when you start your next script. So, cache/ram: no. But if you want to do it without file interaction, you could write something like an environment variable or a registry entry.
    1 point
  5. Melba23

    GUI list sort option and

    Sodori, By default the list control has the $LB_SORT style which forces a sort of the items and also assumes that they are in string format, which leads to the rather unexpected order you see. So you need to remove that style from the list when you create it and sort the values as numbers before adding them to the list: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <Array.au3> ; Array of values as strings Global $aList_String[8] = ["1", "2", "3", "12", "134", "14", "256", "8"] ; And sorted as strings _ArraySort($aList_String) ; Array of values as numbers Global $aList_Number[8] = [1, 2, 3, 12, 134, 14, 256, 8] ; And sorted as numbers _ArraySort($aList_Number) $hGUI = GUICreate("Test", 500, 500) ; Create lists without the sort style $cList_String = GUICtrlCreateList("", 10, 10, 230, 300, BitOr($WS_BORDER, $WS_VSCROLL)) $cList_Number = GUICtrlCreateList("", 260, 10, 230, 300, BitOr($WS_BORDER, $WS_VSCROLL)) ; Add items to the lists For $i = 0 To 7 GUICtrlSetData($cList_String, $aList_String[$i]) GUICtrlSetData($cList_Number, $aList_Number[$i]) Next GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEndAll clear? M23
    1 point
×
×
  • Create New...