• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Does anyone know What save system TWRPG uses?

Status
Not open for further replies.
Level 8
Joined
Jul 10, 2018
Messages
383
The save code in The World RPD works great and auto saves the info as a text file in your doc\wc3\CustomMapData\TWRPG folder path.
I need this!
I assume he is using a system someone made in here unless he made his own..? Can someone point me to it please thanks!
Link to the map site:
Map Downloads - The World RPG
CodeGen 1.0.2

This Save/load System does as you want it creates a code and in a folder in documents.
 
Level 13
Joined
Mar 24, 2010
Messages
950
Do you know if its the same exact one? It gives an output looking like this, pretty slick.

function PreloadFiles takes nothing returns nothing

call Preload( "---------------------------------------" )
call Preload( "User Name: Bond009" )
call Preload( "Played Version: 0.36f" )
call Preload( "Compatible Version: 0.24c ~" )
call Preload( "Class: Thunderer" )
call Preload( "Level: 4" )
call Preload( "Current EXP / EXP needed to level: 1265 / 1400" )
call Preload( "----------Hero Inventory----------" )
call Preload( "----------Bag----------" )
call Preload( "----------Storage----------" )
call Preload( "---------------------------------------" )
call Preload( "Load Code 1: -load hNt9AAqPAz8jdy3xL43NHq$DgYwOQQUmXkT@rm4" )
call PreloadEnd( 0.0 )

endfunction
 
Level 8
Joined
Jul 10, 2018
Messages
383
Do you know if its the same exact one? It gives an output looking like this, pretty slick.

function PreloadFiles takes nothing returns nothing

call Preload( "---------------------------------------" )
call Preload( "User Name: Bond009" )
call Preload( "Played Version: 0.36f" )
call Preload( "Compatible Version: 0.24c ~" )
call Preload( "Class: Thunderer" )
call Preload( "Level: 4" )
call Preload( "Current EXP / EXP needed to level: 1265 / 1400" )
call Preload( "----------Hero Inventory----------" )
call Preload( "----------Bag----------" )
call Preload( "----------Storage----------" )
call Preload( "---------------------------------------" )
call Preload( "Load Code 1: -load hNt9AAqPAz8jdy3xL43NHq$DgYwOQQUmXkT@rm4" )
call PreloadEnd( 0.0 )

endfunction
yes it gives the exact same thing.
 
Level 8
Joined
Jul 10, 2018
Messages
383
Do you know if its the same exact one? It gives an output looking like this, pretty slick.

function PreloadFiles takes nothing returns nothing

call Preload( "---------------------------------------" )
call Preload( "User Name: Bond009" )
call Preload( "Played Version: 0.36f" )
call Preload( "Compatible Version: 0.24c ~" )
call Preload( "Class: Thunderer" )
call Preload( "Level: 4" )
call Preload( "Current EXP / EXP needed to level: 1265 / 1400" )
call Preload( "----------Hero Inventory----------" )
call Preload( "----------Bag----------" )
call Preload( "----------Storage----------" )
call Preload( "---------------------------------------" )
call Preload( "Load Code 1: -load hNt9AAqPAz8jdy3xL43NHq$DgYwOQQUmXkT@rm4" )
call PreloadEnd( 0.0 )

endfunction
but the storage and the bag is extra things you have to add.
 
Status
Not open for further replies.
Top