Jump to content

Leaderboard

Popular Content

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

  1. Updated to 4.1.5, fixes reusage of waste in GRF archives was not enabled (ever since its introduction in 4.0.0). Depending on amount of wasted space, some archives may shrink in response to being updated. It also fixes the /testpak command reporting Sakray/Test archives as corrupted.
    1 point
  2. < Stolao's Pvp Ladder> Features: A Dynamic Pvp Ladder Todo: Suggestions? Optimize? Changelog: 3.00 Overhaul 3.01 Fixed missing "No" for "No Ygg" 3.02 Added Show Map Name Option 3.03 Added Max Players Option 3.04 Optimized and fixed SQL queries [Secret] 3.05 Replaced some queries with addrid(0) 3.06 Updated Rewards to RODEX compatable 3.07 Fixed all rom referancing room [0] player limit 3.08 Made Made .MaxPlayers = 0, mean unlimited 3.09 Removed use of getd 3.0A Cleaned up some code 3.0B Moved Menu Generation to fix Map Count not showing 3.0C Actually Added RoDex Support now 3.0D Fixed Map Menu Generation 3.0E Fixed sql query 3.0F Cleaned Code a bit 3.10 Did more Cleaned Code a bit 3.11 Fixed a logic bug in GM reset 3.12 Added Waiting Room 3.13 Added Dynamic Waiting Room 3.14 Moved and added more At_Commands 3.15 Dynamic Waiting Room (&4096) require Waiting Room (&2048) to work 3.16 Increased Waiting Room Rotation Time 3.17 Fixed Typos in Reset PVP Stats 3.18 Removed unnessisary next, creating hang screens 3.19 Made compatable with new mail command 3.1A Reformatted Rewards in conf to support 5 items Links: Latest Pvp Ladder
    1 point
  3. --------------------------------------- *setd "<variable name>",<value>{,<char_id>}; Works almost identically as set, except the variable name is identified as a string and can thus be constructed dynamically. This command is equivalent to: set getd("variable name"),<value>; Examples: setd ".@var$", "Poporing"; mes .@var$; // Displays "Poporing". setd ".@" + .@var$ + "123$", "Poporing is cool"; mes .@Poporing123$; // Displays "Poporing is cool". NOTE: 'char_id' only works for non-server variables. Player with Character ID 'char_id' must be online. --------------------------------------- *getd("<variable name>") Returns a reference to a variable, the name can be constructed dynamically. Refer to 'setd' for usage. This can also be used to set an array dynamically: setarray getd(".array[0]"), 1, 2, 3, 4, 5; Examples: set getd("$varRefence"), 1; set .@i, getd("$" + "pikachu"); --------------------------------------- example: setarray .@x,1,2; setarray .@x1,10,20,30,40,50; setarray .@x2,100,200,300,400,500; for(.@i=0;.@i<getarraysize(.@x);.@i++){ for(.@m=0;.@m<getarraysize(getd(".@x" + .@x[.@i]));.@m++){ debugmes "" + getd(".@x" + .@x[.@i] + "[" + .@m + "]"); } }
    1 point
×
×
  • Create New...