Search Results
you should check is the function OnPlayerSpawn has been called or not, if not,check all filterscripts if called,you can using crashdetect to check where just stop working in this callback. Quote: ...
105
im not sure but, you can try put this PHP код: Dialog_Show(playerid, BusinessBuy, DIALOG_STYLE_LIST, BusinessData[bizid][bizName], string, "Purchase", "Cancel");  in to your if like...
136
https://github.com/Zeex/samp-plugin-...ith-debug-info Quote: -d<num> debugging level (default=-d1) 0 no symbolic information, no run-time checks ...
95
have you compile that with -d3 tag? and..this just i guess, could you show your LoadGroupForPlayer please?
95
PHP код: for(new i = 0; i < 4; i++) {     if(player[playerid][vModelid][i] == 0)     {         player[playerid][vModelid][i] = modelid;         break; //Â...
55
umm, if you want add all skins, why dont you using loop? https://sampwiki.blast.hk/wiki/Loops https://sampwiki.blast.hk/wiki/Control_Structures#Loops
180
PHP код: public OnPlayerRequestClass(playerid, classid) {     //or here to do something every for all class show     switch(classid)     {         case 0://class...
180
use AddPlayerClass to add that what skin you want to let palyer select. PHP код: public OnGameModeInit() {     // Players can spawn with either the CJ skin (0) or The Truth s...
180
have you using this? https://sampwiki.blast.hk/wiki/AddPlayerClass
180
PHP код: public OnPlayerConnect(playerid) {     if(fexist(UserPath(playerid)))     {         INI_ParseFile(UserPath(playerid),"LoadUser_%s",.bExtra = true ,.extra = playe...
93
maybe here like SkyFlare said PHP код: case DIALOG_REGISTER:          {              if (!response) return Kick(playerid);              if(response)   ...
165
i guess.. maybe when you create it on CreateApartments, all ApartmentInfo[id][aEnterX], ApartmentInfo[id][aExitY], ApartmentInfo[id][aEnterZ] is not set pos
90
maybe this is not the best way to make it, but you can try it, it's worked. PHP код: public OnPlayerRequestClass(playerid, classid) {     SpawnPlayer(playerid);     TogglePlayerSpect...
153
Quote: Originally Posted by Micko123 3 xD what happenedddddd (X w X)/ but thank you, i learned something about it/
398
nice job! do you using sublime 2 ;___;?
398
umm.. you might not change anything with these at Pawn.sublime-build: PHP код: {     "cmd": ["${project_path:${folder}}/pawncc.exe", "$file_name", "-;+", "-v2", "-d3", "-\\)+"],   ...
398
i'm sorry x___x.. there's 2 way can make that as i know, 1: check player login or not, and use camera in OnPlayerRequestClass PHP код: public OnPlayerRequestClass(playerid, classid) {   Â...
153
no, everything default if you add Project Folder , than everything will be ok. cause "working_dir" will load ${file_path} (where's pwn at) ${project_path:${folder}}/pawncc.exe will load Project Fold...
398
sure, this is my Pawn.sublime-build in Packages\User\ PHP код: {     "cmd": ["${project_path:${folder}}/pawncc.exe", "$file_name", "-;+", "-v2", "-d3", "-\\)+"],     "working_dir...
398
umm.. in my case, when i compiled with sublime,that .amx have changed. maybe some parameter is wrong in Pawn.sublime-build i guess..? or build system wrong..
398